]> git.mxchange.org Git - friendica.git/blobdiff - mod/follow.php
Merge pull request #3483 from rabuzarus/20170522_-_frio_event_button_fix
[friendica.git] / mod / follow.php
index 3ba33780ba944327cd2fa86a6a4ad88fc5c06120..45e017f088dd6f58f7de895c54d19d240a382c55 100644 (file)
@@ -1,11 +1,13 @@
 <?php
 
-require_once('include/Scrape.php');
-require_once('include/follow.php');
-require_once('include/Contact.php');
-require_once('include/contact_selectors.php');
+use Friendica\App;
 
-function follow_content(App &$a) {
+require_once 'include/probe.php';
+require_once 'include/follow.php';
+require_once 'include/Contact.php';
+require_once 'include/contact_selectors.php';
+
+function follow_content(App $a) {
 
        if (! local_user()) {
                notice( t('Permission denied.') . EOL);
@@ -110,7 +112,7 @@ function follow_content(App &$a) {
                        //'$photo' => proxy_url($ret["photo"], false, PROXY_SIZE_SMALL),
                        '$desc' => "",
                        '$pls_answer' => t('Please answer the following:'),
-                       '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))),
+                       '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'), t('Yes'))),
                        '$add_note' => t('Add a personal note:'),
                        '$page_desc' => "",
                        '$friendica' => "",
@@ -152,7 +154,7 @@ function follow_content(App &$a) {
        return $o;
 }
 
-function follow_post(App &$a) {
+function follow_post(App $a) {
 
        if (! local_user()) {
                notice( t('Permission denied.') . EOL);