]> git.mxchange.org Git - friendica.git/blobdiff - mod/follow.php
Merge pull request #3595 from annando/1707-realpath
[friendica.git] / mod / follow.php
index 3ba33780ba944327cd2fa86a6a4ad88fc5c06120..8d5cb991267ea620b7f822a7349df424e15111bf 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);
@@ -35,14 +37,14 @@ function follow_content(App &$a) {
 
        $ret = probe_url($url);
 
-       if (($ret["network"] == NETWORK_DIASPORA) AND !get_config('system','diaspora_enabled')) {
+       if (($ret["network"] == NETWORK_DIASPORA) && !get_config('system','diaspora_enabled')) {
                notice( t("Diaspora support isn't enabled. Contact can't be added.") . EOL);
                $submit = "";
                //goaway($_SESSION['return_url']);
                // NOTREACHED
        }
 
-       if (($ret["network"] == NETWORK_OSTATUS) AND get_config('system','ostatus_disabled')) {
+       if (($ret["network"] == NETWORK_OSTATUS) && get_config('system','ostatus_disabled')) {
                notice( t("OStatus support is disabled. Contact can't be added.") . EOL);
                $submit = "";
                //goaway($_SESSION['return_url']);
@@ -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);