]> git.mxchange.org Git - friendica.git/commitdiff
added spaces + curly braces
authorRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 10:36:03 +0000 (11:36 +0100)
committerRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 10:36:03 +0000 (11:36 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
include/notifier.php
include/socgraph.php
mod/profile_photo.php
mod/profiles.php
mod/redir.php
mod/regmod.php
mod/settings.php

index 8823834c1d361ed1535afa6ae92d5b52708c07cc..9e1450ba2b5004a676f62375aab0f686290f3c23 100644 (file)
@@ -558,7 +558,7 @@ function notifier_run(&$argv, &$argc){
        if($slap && count($url_recipients) && ($public_message || $push_notify) && $normal_mode) {
                if(!get_config('system','dfrn_only')) {
                        foreach($url_recipients as $url) {
-                               if($url) {
+                               if ($url) {
                                        logger('notifier: urldelivery: ' . $url);
                                        $deliver_status = slapper($owner,$url,$slap);
                                        /// @TODO Redeliver/queue these items on failure, though there is no contact record
index 31c7e597d3cba1f3da019db61d31122981565ab4..3fe1227f313c46037a6b2b2b2d8e519c97c0b536 100644 (file)
@@ -93,19 +93,19 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
 
                if(isset($entry->urls)) {
                        foreach($entry->urls as $url) {
-                               if($url->type == 'profile') {
+                               if ($url->type == 'profile') {
                                        $profile_url = $url->value;
                                        continue;
                                }
-                               if($url->type == 'webfinger') {
+                               if ($url->type == 'webfinger') {
                                        $connect_url = str_replace('acct:' , '', $url->value);
                                        continue;
                                }
                        }
                }
-               if(isset($entry->photos)) {
+               if (isset($entry->photos)) {
                        foreach($entry->photos as $photo) {
-                               if($photo->type == 'profile') {
+                               if ($photo->type == 'profile') {
                                        $profile_photo = $photo->value;
                                        continue;
                                }
@@ -1334,7 +1334,7 @@ function poco_discover_server_users($data, $server) {
                $username = "";
                if (isset($entry->urls)) {
                        foreach($entry->urls as $url)
-                               if($url->type == 'profile') {
+                               if ($url->type == 'profile') {
                                        $profile_url = $url->value;
                                        $urlparts = parse_url($profile_url);
                                        $username = end(explode("/", $urlparts["path"]));
@@ -1378,11 +1378,11 @@ function poco_discover_server($data, $default_generation = 0) {
 
                if(isset($entry->urls)) {
                        foreach($entry->urls as $url) {
-                               if($url->type == 'profile') {
+                               if ($url->type == 'profile') {
                                        $profile_url = $url->value;
                                        continue;
                                }
-                               if($url->type == 'webfinger') {
+                               if ($url->type == 'webfinger') {
                                        $connect_url = str_replace('acct:' , '', $url->value);
                                        continue;
                                }
index 52cf6d26f451aceada498c44aae8b8978bd7aa67..fd7302e4dadc07a62a0bdd51158f7c919bc3edfd 100644 (file)
@@ -124,8 +124,9 @@ function profile_photo_post(App &$a) {
                                info( t('Shift-reload the page or clear browser cache if the new photo does not display immediately.') . EOL);
                                // Update global directory in background
                                $url = App::get_baseurl() . '/profile/' . $a->user['nickname'];
-                               if($url && strlen(get_config('system','directory')))
+                               if ($url && strlen(get_config('system','directory'))) {
                                        proc_run(PRIORITY_LOW, "include/directory.php", $url);
+                               }
 
                                require_once('include/profile_update.php');
                                profile_change();
@@ -223,8 +224,9 @@ function profile_photo_content(App &$a) {
 
                        // Update global directory in background
                        $url = $_SESSION['my_url'];
-                       if($url && strlen(get_config('system','directory')))
+                       if ($url && strlen(get_config('system','directory'))) {
                                proc_run(PRIORITY_LOW, "include/directory.php", $url);
+                       }
 
                        goaway(App::get_baseurl() . '/profiles');
                        return; // NOTREACHED
index 186d7a615ef7d0202d07adc23e3617415ff6b224..cca7a57ec5504a9acbbe6a801f2418ed7ead74b5 100644 (file)
@@ -502,8 +502,9 @@ function profiles_post(App &$a) {
 
                        // Update global directory in background
                        $url = $_SESSION['my_url'];
-                       if($url && strlen(get_config('system','directory')))
+                       if ($url && strlen(get_config('system','directory'))) {
                                proc_run(PRIORITY_LOW, "include/directory.php", $url);
+                       }
 
                        require_once('include/profile_update.php');
                        profile_change();
index e58158027139b5b18755f394cdc12a8faf22aa7e..b0c0b2c09928981a0c4ad402493789b912aef588 100644 (file)
@@ -63,12 +63,14 @@ function redir_init(App &$a) {
                        . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest . $quiet );
        }
 
-       if(local_user())
+       if (local_user()) {
                $handle = $a->user['nickname'] . '@' . substr($a->get_baseurl(),strpos($a->get_baseurl(),'://')+3);
-       if(remote_user())
+       }
+       if (remote_user()) {
                $handle = $_SESSION['handle'];
+       }
 
-       if($url) {
+       if ($url) {
                $url = str_replace('{zid}','&zid=' . $handle,$url);
                goaway($url);
        }
index d20383ba53846864d655ed7716fefb81b1082f53..60da71321eb89f2b83edfe63ca4d84764de2d600 100644 (file)
@@ -38,8 +38,9 @@ function user_allow($hash) {
        );
        if (dbm::is_result($r) && $r[0]['net-publish']) {
                $url = App::get_baseurl() . '/profile/' . $user[0]['nickname'];
-               if($url && strlen(get_config('system','directory')))
+               if ($url && strlen(get_config('system','directory'))) {
                        proc_run(PRIORITY_LOW, "include/directory.php", $url);
+               }
        }
 
        push_lang($register[0]['language']);
index 0d052cc1b75770ba8e55d32a7ae949aaf85ef999..14ef33fc8672d393639d6aa18555c868bf09c8e1 100644 (file)
@@ -629,8 +629,9 @@ function settings_post(App &$a) {
        if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
                // Update global directory in background
                $url = $_SESSION['my_url'];
-               if($url && strlen(get_config('system','directory')))
+               if ($url && strlen(get_config('system','directory'))) {
                        proc_run(PRIORITY_LOW, "include/directory.php", $url);
+               }
        }
 
        require_once('include/profile_update.php');