]> git.mxchange.org Git - friendica.git/commitdiff
added much more curly braces + space between "if" and brace
authorRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 10:56:34 +0000 (11:56 +0100)
committerRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 10:59:13 +0000 (11:59 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
Conflicts:
mod/bookmarklet.php
mod/community.php
mod/contacts.php
mod/crepair.php
mod/events.php
mod/network.php
mod/suggest.php
mod/uexport.php
view/theme/duepuntozero/config.php
view/theme/frio/config.php
view/theme/quattro/config.php
view/theme/vier/config.php

50 files changed:
doc/themes.md
include/acl_selectors.php
include/contact_widgets.php
include/group.php
mod/allfriends.php
mod/api.php
mod/bookmarklet.php
mod/community.php
mod/contactgroup.php
mod/contacts.php
mod/content.php
mod/crepair.php
mod/delegate.php
mod/dirfind.php
mod/editpost.php
mod/events.php
mod/filer.php
mod/filerm.php
mod/follow.php
mod/fsuggest.php
mod/group.php
mod/ignored.php
mod/invite.php
mod/manage.php
mod/match.php
mod/message.php
mod/mood.php
mod/network.php
mod/nogroup.php
mod/notes.php
mod/notifications.php
mod/oexchange.php
mod/ostatus_subscribe.php
mod/poke.php
mod/profile_photo.php
mod/profiles.php
mod/profperm.php
mod/qsearch.php
mod/regmod.php
mod/repair_ostatus.php
mod/settings.php
mod/starred.php
mod/suggest.php
mod/tagrm.php
mod/uexport.php
mod/viewsrc.php
view/theme/duepuntozero/config.php
view/theme/frio/config.php
view/theme/quattro/config.php
view/theme/vier/config.php

index add44c776bc5f130b6bc842891101e970de5dd9c..0d3c6eb3d6d0106a2e01d930123a8ca6cf557d76 100644 (file)
@@ -124,8 +124,9 @@ The selected 1st part will be saved in the database by the theme_post function.
 
     function theme_post(&$a){
         // non local users shall not pass
-        if(! local_user())
+        if (! local_user()) {
             return;
+        }
         // if the one specific submit button was pressed then proceed
         if (isset($_POST['duepuntozero-settings-submit'])){
             // and save the selection key into the personal config of the user
index ed9c634c23a8073950eb6ae40e146444e8554737..2be030304965f0660ad4680e1fdba9bdc7ae401b 100644 (file)
@@ -392,8 +392,9 @@ function construct_acl_data(&$a, $user) {
 
 function acl_lookup(&$a, $out_type = 'json') {
 
-       if(!local_user())
-               return "";
+       if (!local_user()) {
+               return '';
+       }
 
        $start  =       (x($_REQUEST,'start')           ? $_REQUEST['start']            : 0);
        $count  =       (x($_REQUEST,'count')           ? $_REQUEST['count']            : 100);
index a74080e75b6375867d8bab0b1be1520807bcab0e..71a75d431eaa3efba3769be507356ee41184f37f 100644 (file)
@@ -80,11 +80,13 @@ function networks_widget($baseurl,$selected = '') {
 
        $a = get_app();
 
-       if(!local_user())
+       if (!local_user()) {
                return '';
+       }
 
-       if(!feature_enabled(local_user(),'networks'))
+       if (!feature_enabled(local_user(),'networks')) {
                return '';
+       }
 
        $extra_sql = unavailable_networks();
 
@@ -116,15 +118,18 @@ function networks_widget($baseurl,$selected = '') {
 }
 
 function fileas_widget($baseurl,$selected = '') {
-       if(! local_user())
+       if (! local_user()) {
                return '';
+       }
 
-       if(! feature_enabled(local_user(),'filing'))
+       if (! feature_enabled(local_user(),'filing')) {
                return '';
+       }
 
        $saved = get_pconfig(local_user(),'system','filetags');
-       if(! strlen($saved))
+       if (! strlen($saved)) {
                return;
+       }
 
        $matches = false;
        $terms = array();
index 67712aae7c45924f3146762d8a03629c1a293940..a2a55c44403b61f69f31e54d245e1f7507fba878 100644 (file)
@@ -234,7 +234,7 @@ function group_side($every="contacts",$each="group",$editmode = "standard", $gro
 
        $o = '';
 
-       if(! local_user())
+       if (! local_user())
                return '';
 
        $groups = array();
index e4f067eaf7d4cd1b0aef62fcf800895eee17c41d..420bd8690f84559ef92662ddb16a0644f5c9ea06 100644 (file)
@@ -8,16 +8,18 @@ require_once('mod/contacts.php');
 function allfriends_content(&$a) {
 
        $o = '';
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
 
-       if($a->argc > 1)
+       if ($a->argc > 1) {
                $cid = intval($a->argv[1]);
+       }
 
-       if(! $cid)
+       if (! $cid) {
                return;
+       }
 
        $uid = $a->user[uid];
 
@@ -26,7 +28,8 @@ function allfriends_content(&$a) {
                intval(local_user())
        );
 
-       if(! count($c))
+       if (! count($c)) {
+       }
                return;
 
        $a->page['aside'] = "";
index 406ef26c1c76adf22993b14e27da1badd1c87bb8..caa1cba2a6625e13d1f85029342bd87814337fd5 100644 (file)
@@ -22,7 +22,7 @@ function oauth_get_client($request){
 
 function api_post(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -84,7 +84,7 @@ function api_content(&$a) {
                }
 
 
-               if(! local_user()) {
+               if (! local_user()) {
                        /// @TODO We need login form to redirect to this page
                        notice( t('Please login to continue.') . EOL );
                        return login(false,$request->get_parameters());
index cb8320013f39efc2a11c4908ba7bdc69356899cf..86a73a788428d59158fff219cce5a44f743ccb56 100644 (file)
@@ -8,7 +8,7 @@ function bookmarklet_init(&$a) {
 }
 
 function bookmarklet_content(&$a) {
-       if(!local_user()) {
+       if (!local_user()) {
                $o = '<h2>'.t('Login').'</h2>';
                $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
                return $o;
index c8f04d8bd619e67bea2afe626065c20b0c1e3a60..d7fd2bb933ba0d70d3e0199a74ad7f83ae121793 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 function community_init(&$a) {
-       if(! local_user()) {
+       if (! local_user()) {
                unset($_SESSION['theme']);
                unset($_SESSION['mobile-theme']);
        }
index 0671ff42ae45d314f63d617f65a30565d7d7e06c..856b01dd504d406bdc6395f9a1170e203b5bf2af 100644 (file)
@@ -5,7 +5,7 @@ require_once('include/group.php');
 function contactgroup_content(&$a) {
 
 
-       if(! local_user()) {
+       if (! local_user()) {
                killme();
        }
 
index 22e08b8c96037514c426d0415c081b20f03a352a..f9b6f64d86111c8bf4e1752082ef1596aec104ce 100644 (file)
@@ -8,8 +8,9 @@ require_once('mod/proxy.php');
 require_once('include/Photo.php');
 
 function contacts_init(&$a) {
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $contact_id = 0;
 
@@ -138,8 +139,9 @@ function contacts_batch_actions(&$a){
 
 function contacts_post(&$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        if ($a->argv[1]==="batch") {
                contacts_batch_actions($a);
@@ -147,15 +149,16 @@ function contacts_post(&$a) {
        }
 
        $contact_id = intval($a->argv[1]);
-       if(! $contact_id)
+       if (! $contact_id) {
                return;
+       }
 
        $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                intval($contact_id),
                intval(local_user())
        );
 
-       if(! count($orig_record)) {
+       if (! count($orig_record)) {
                notice( t('Could not access contact record.') . EOL);
                goaway('contacts');
                return; // NOTREACHED
@@ -164,7 +167,7 @@ function contacts_post(&$a) {
        call_hooks('contact_edit_post', $_POST);
 
        $profile_id = intval($_POST['profile-assign']);
-       if($profile_id) {
+       if ($profile_id) {
                $r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                        intval($profile_id),
                        intval(local_user())
@@ -346,7 +349,7 @@ function contacts_content(&$a) {
        nav_set_selected('contacts');
 
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index 1a3fb109528da0d10f082a17c52b4178b7b5a6e3..2377032a7939c7fd4a21911f9a1ad48da3fdd751 100644 (file)
@@ -23,7 +23,7 @@ function content_content(&$a, $update = 0) {
 
        // Currently security is based on the logged in user
 
-       if(! local_user()) {
+       if (! local_user()) {
                return;
        }
 
index 66faadb06a0483bf0fcc3503e773a58574efb673..59b92df0a7d0d8c48a6f0acbaa2d8cb6894e0072 100644 (file)
@@ -3,8 +3,9 @@ require_once("include/contact_selectors.php");
 require_once("mod/contacts.php");
 
 function crepair_init(&$a) {
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $contact_id = 0;
 
@@ -29,10 +30,10 @@ function crepair_init(&$a) {
        }
 }
 
-
 function crepair_post(&$a) {
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
 
@@ -97,7 +98,7 @@ function crepair_post(&$a) {
 
 function crepair_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index 94e641068d67bec37c7e6785a52cb92ab66f0a20..3bd1c85ed793cf3ded638b8cde91b23af554cf99 100644 (file)
@@ -8,7 +8,7 @@ function delegate_init(&$a) {
 
 function delegate_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index 1e3f6f354a08d647a01e79e9e81f8533221f5676..8cb0e1a0837a12dc74e592b041bc27d09b305445 100644 (file)
@@ -7,7 +7,7 @@ require_once('mod/contacts.php');
 
 function dirfind_init(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL );
                return;
        }
index eccd498d154b1dcd6c2762a0d8bdb03ee92b6d92..54b50bc36de5f1f7c1619e4fdebeb475d38308cc 100644 (file)
@@ -6,14 +6,14 @@ function editpost_content(&$a) {
 
        $o = '';
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
 
        $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
 
-       if(! $post_id) {
+       if (! $post_id) {
                notice( t('Item not found') . EOL);
                return;
        }
@@ -23,7 +23,7 @@ function editpost_content(&$a) {
                intval(local_user())
        );
 
-       if(! count($itm)) {
+       if (! count($itm)) {
                notice( t('Item not found') . EOL);
                return;
        }
index 44e6dd4cf0f6f6eb294487dcd8e263734b8f08ea..a20934222fe7e4a09c9f3c6041c9181053989a3f 100644 (file)
@@ -9,8 +9,9 @@ require_once('include/event.php');
 require_once('include/items.php');
 
 function events_init(&$a) {
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        if($a->argc == 1) {
                // if it's a json request abort here becaus we don't
@@ -33,8 +34,9 @@ function events_post(&$a) {
 
        logger('post: ' . print_r($_REQUEST,true));
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $event_id = ((x($_POST,'event_id')) ? intval($_POST['event_id']) : 0);
        $cid = ((x($_POST,'cid')) ? intval($_POST['cid']) : 0);
@@ -186,7 +188,7 @@ function events_post(&$a) {
 
 function events_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index 4e79f337dcff22502ac15d4c0673872253678312..eac3260591a3a7d6b770adc933d05f6f94dc44b7 100644 (file)
@@ -7,7 +7,7 @@ require_once('include/items.php');
 
 function filer_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                killme();
        }
 
index c266082c8ffe2e76a3fbe866df080e3a3159401d..2f504b80fb66f4819fac6a62b3fe9ac50ed702c0 100644 (file)
@@ -2,7 +2,7 @@
 
 function filerm_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                killme();
        }
 
index 1f56caea5094451ecf1add9ec80d10b0373b9110..f805296790a652388ec3f633ba757d042e828a8d 100644 (file)
@@ -7,7 +7,7 @@ require_once('include/contact_selectors.php');
 
 function follow_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                goaway($_SESSION['return_url']);
                // NOTREACHED
@@ -151,7 +151,7 @@ function follow_content(&$a) {
 
 function follow_post(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                goaway($_SESSION['return_url']);
                // NOTREACHED
index 4370952ca1dd80997e270f7b2ff1c168659681c5..66871653ddff3f00c3a01fbd156c2038f61c0738 100644 (file)
@@ -3,12 +3,13 @@
 
 function fsuggest_post(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                return;
        }
 
-       if($a->argc != 2)
+       if ($a->argc != 2) {
                return;
+       }
 
        $contact_id = intval($a->argv[1]);
 
@@ -74,7 +75,7 @@ function fsuggest_content(&$a) {
 
        require_once('include/acl_selectors.php');
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index da5f4df521a418dff7afbe1293b6e7f4d11a3038..8a744d1e11c4c8dcf597b78d6ac942c39ee27590 100644 (file)
@@ -15,7 +15,7 @@ function group_init(&$a) {
 
 function group_post(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -73,7 +73,7 @@ function group_post(&$a) {
 function group_content(&$a) {
        $change = false;
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied') . EOL);
                return;
        }
index 4aeeb21e6b98a38b1a5acadc069a298a119468de..5e8411e376743d630e30a75d8cf27a6e0ad40d3f 100644 (file)
@@ -5,12 +5,15 @@ function ignored_init(&$a) {
 
        $ignored = 0;
 
-       if(! local_user())
+       if (! local_user()) {
                killme();
-       if($a->argc > 1)
+       }
+       if ($a->argc > 1) {
                $message_id = intval($a->argv[1]);
-       if(! $message_id)
+       }
+       if (! $message_id) {
                killme();
+       }
 
        $r = q("SELECT `ignored` FROM `thread` WHERE `uid` = %d AND `iid` = %d LIMIT 1",
                intval(local_user()),
@@ -20,8 +23,9 @@ function ignored_init(&$a) {
                killme();
        }
 
-       if(! intval($r[0]['ignored']))
+       if (! intval($r[0]['ignored'])) {
                $ignored = 1;
+       }
 
        $r = q("UPDATE `thread` SET `ignored` = %d WHERE `uid` = %d and `iid` = %d",
                intval($ignored),
@@ -31,7 +35,7 @@ function ignored_init(&$a) {
 
        // See if we've been passed a return path to redirect to
        $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
-       if($return_path) {
+       if ($return_path) {
                $rand = '_=' . time();
                if(strpos($return_path, '?')) $rand = "&$rand";
                else $rand = "?$rand";
index 5964acac4349f8f1c2a9571389db88d419349e87..ae08c387eb3bf77cb848e92ce367d3599e47ccff 100644 (file)
@@ -11,7 +11,7 @@ require_once('include/email.php');
 
 function invite_post(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -97,7 +97,7 @@ function invite_post(&$a) {
 
 function invite_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index 2138595beefc914da535594ad14432cbb98ce068..bb9dfc313cf275ca68eb28055e2aca50649ed0ba 100644 (file)
@@ -5,8 +5,9 @@ require_once("include/text.php");
 
 function manage_post(&$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $uid = local_user();
        $orig_record = $a->user;
@@ -93,7 +94,7 @@ function manage_post(&$a) {
 
 function manage_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index 69bf3c1101142f33bdd98c3ef40669d12f0d46c5..6eb24338c224ecc34d2b4c534e7a9d6c07033714 100644 (file)
@@ -16,8 +16,9 @@ require_once('mod/proxy.php');
 function match_content(&$a) {
 
        $o = '';
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $a->page['aside'] .= findpeople_widget();
        $a->page['aside'] .= follow_widget();
index b0d0ba95ca54d92d7503306e8b54e7c8871bda8b..f92635259063d91850fface718c83316363a0f9b 100644 (file)
@@ -42,7 +42,7 @@ function message_init(&$a) {
 
 function message_post(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -178,7 +178,7 @@ function message_content(&$a) {
        $o = '';
        nav_set_selected('messages');
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index e378b9d0a40a8c40f1bd2146f7a41ac884840dc7..ec318f85fd8e95bcc376d614dbb3a80514bb3ecc 100644 (file)
@@ -7,8 +7,9 @@ require_once('include/items.php');
 
 function mood_init(&$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $uid = local_user();
        $verb = notags(trim($_GET['verb']));
@@ -110,7 +111,7 @@ function mood_init(&$a) {
 
 function mood_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index c040a547a4b97a0a62ae7caa3640fd289db387ba..ba97148009563a726ec32067f8c9b44f161eaa85 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 function network_init(&$a) {
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -308,7 +308,7 @@ function network_content(&$a, $update = 0) {
 
        require_once('include/conversation.php');
 
-       if(! local_user()) {
+       if (! local_user()) {
                $_SESSION['return_url'] = $a->query_string;
                return login(false);
        }
index 0a014c067668daf5c2a40c34b79bec944fae3137..f2a5a3b33b2da6dc755e1c256eee9496090eccfc 100644 (file)
@@ -6,14 +6,16 @@ require_once('include/contact_selectors.php');
 
 function nogroup_init(&$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        require_once('include/group.php');
        require_once('include/contact_widgets.php');
 
-       if(! x($a->page,'aside'))
+       if (! x($a->page,'aside')) {
                $a->page['aside'] = '';
+       }
 
        $a->page['aside'] .= group_side('contacts','group','extended',0,$contact_id);
 }
@@ -21,7 +23,7 @@ function nogroup_init(&$a) {
 
 function nogroup_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return '';
        }
index 74ab18a6f95f0aeeb16418b584709163a471c981..d9222dca5104a41b8f57c4794f228330cf5c5c1b 100644 (file)
@@ -2,8 +2,9 @@
 
 function notes_init(&$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $profile = 0;
 
@@ -18,7 +19,7 @@ function notes_init(&$a) {
 
 function notes_content(&$a,$update = false) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index 3e0bd9cc47d715e79adefe574436f97ff5465238..4c564533505c9c933a1da4f6e495a50853e846db 100644 (file)
@@ -11,7 +11,7 @@ require_once("include/network.php");
 
 function notifications_post(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                goaway(z_root());
        }
 
@@ -67,7 +67,7 @@ function notifications_post(&$a) {
 
 function notifications_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index b25c418e4c41fb31e6d425d97da3a08b75159953..6eb380dff4cc3da49557548e2ad6b08dde9e359a 100644 (file)
@@ -16,12 +16,12 @@ function oexchange_init(&$a) {
 
 function oexchange_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                $o = login(false);
                return $o;
        }
 
-       if(($a->argc > 1) && $a->argv[1] === 'done') {
+       if (($a->argc > 1) && $a->argv[1] === 'done') {
                info( t('Post successful.') . EOL);
                return;
        }
index 2e09bfc0d6eacdbe93601457fa8db76871ec5fde..963f43693954c0290c4250f6467a8cb88314e298 100644 (file)
@@ -5,7 +5,7 @@ require_once('include/follow.php');
 
 function ostatus_subscribe_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                goaway($_SESSION['return_url']);
                // NOTREACHED
index fea5c0c0d8ceda163f3616963e039e0dc12bfa23..af8eed35a089a54f6bd2520e8af5ae12e4ecd28c 100644 (file)
@@ -21,25 +21,29 @@ require_once('include/items.php');
 
 function poke_init(&$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $uid = local_user();
        $verb = notags(trim($_GET['verb']));
 
-       if(! $verb)
+       if (! $verb) {
                return;
+       }
 
        $verbs = get_poke_verbs();
 
-       if(! array_key_exists($verb,$verbs))
+       if (! array_key_exists($verb,$verbs)) {
                return;
+       }
 
        $activity = ACTIVITY_POKE . '#' . urlencode($verbs[$verb][0]);
 
        $contact_id = intval($_GET['cid']);
-       if(! $contact_id)
+       if (! $contact_id) {
                return;
+       }
 
        $parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : 0);
 
@@ -146,7 +150,7 @@ function poke_init(&$a) {
 
 function poke_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index 70ea45afa4e923003e97e853687f9dec52571d00..2aca9801d2c858caeaca2505fac5a997a55d835b 100644 (file)
@@ -4,7 +4,7 @@ require_once("include/Photo.php");
 
 function profile_photo_init(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                return;
        }
 
@@ -15,7 +15,7 @@ function profile_photo_init(&$a) {
 
 function profile_photo_post(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice ( t('Permission denied.') . EOL );
                return;
        }
@@ -172,7 +172,7 @@ function profile_photo_post(&$a) {
 if(! function_exists('profile_photo_content')) {
 function profile_photo_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL );
                return;
        }
index 5aa41c90d88d3f62939e10b78e23cfcdeab7a85c..4e29b93fd226b7865242853f096207b63488ecca 100644 (file)
@@ -6,7 +6,7 @@ function profiles_init(&$a) {
 
        nav_set_selected('profiles');
 
-       if(! local_user()) {
+       if (! local_user()) {
                return;
        }
 
@@ -162,7 +162,7 @@ function profile_clean_keywords($keywords) {
 
 function profiles_post(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -595,14 +595,15 @@ function profile_activity($changed, $value) {
        $arr['deny_gid']  = $a->user['deny_gid'];
 
        $i = item_store($arr);
-       if($i)
+       if ($i) {
                proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i);
+       }
 }
 
 
 function profiles_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index aa610d3a93082821c4906a62a640678f071baf34..0a4b3e9a470697555d1def50a565f3dbaf75c9b4 100644 (file)
@@ -2,8 +2,9 @@
 
 function profperm_init(&$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $which = $a->user['nickname'];
        $profile = $a->argv[1];
@@ -15,7 +16,7 @@ function profperm_init(&$a) {
 
 function profperm_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied') . EOL);
                return;
        }
index a440ea708fe22e0b211ad588468d198abd773202..b976e1a585acf3c4269cc9ac69a19f518a8b8e0c 100644 (file)
@@ -2,8 +2,9 @@
 
 function qsearch_init(&$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                killme();
+       }
 
        $limit = (get_config('system','qsearch_limit') ? intval(get_config('system','qsearch_limit')) : 100);
 
index 92433b6d8270f574697364e5446743600aefa47f..34d29a77cecfee8360b9d2e63822876483a47e41 100644 (file)
@@ -101,32 +101,33 @@ function regmod_content(&$a) {
 
        $_SESSION['return_url'] = $a->cmd;
 
-       if(! local_user()) {
+       if (! local_user()) {
                info( t('Please login.') . EOL);
                $o .= '<br /><br />' . login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1);
                return $o;
        }
 
-       if((!is_site_admin()) || (x($_SESSION,'submanage') && intval($_SESSION['submanage']))) {
+       if ((!is_site_admin()) || (x($_SESSION,'submanage') && intval($_SESSION['submanage']))) {
                notice( t('Permission denied.') . EOL);
                return '';
        }
 
-       if($a->argc != 3)
+       if ($a->argc != 3) {
                killme();
+       }
 
        $cmd  = $a->argv[1];
        $hash = $a->argv[2];
 
 
 
-       if($cmd === 'deny') {
+       if ($cmd === 'deny') {
                user_deny($hash);
                goaway(App::get_baseurl()."/admin/users/");
                killme();
        }
 
-       if($cmd === 'allow') {
+       if ($cmd === 'allow') {
                user_allow($hash);
                goaway(App::get_baseurl()."/admin/users/");
                killme();
index 7a454a4ae0be733e3f3736890f72a1a188b6b5fa..ba8a0717565bbf3844d5b79ab3376bba206cdaf9 100755 (executable)
@@ -5,7 +5,7 @@ require_once('include/follow.php');
 
 function repair_ostatus_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                goaway($_SESSION['return_url']);
                // NOTREACHED
index b4546d8bffaeabefd7285620934e178d4fe19ef7..e67ea9bc6a0fdbabecb946336c64d40d9c5254fd 100644 (file)
@@ -18,7 +18,7 @@ function get_theme_config_file($theme){
 
 function settings_init(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL );
                return;
        }
@@ -118,8 +118,9 @@ function settings_init(&$a) {
 
 function settings_post(&$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        if (x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
                return;
@@ -658,7 +659,7 @@ function settings_content(&$a) {
        $o = '';
        nav_set_selected('settings');
 
-       if(! local_user()) {
+       if (! local_user()) {
                #notice( t('Permission denied.') . EOL );
                return;
        }
index 0e5e75d1674bf335d6267bf984c208f1a3f2e941..7ee531e4473322de3c181228523c771b69e0a0d0 100644 (file)
@@ -7,12 +7,15 @@ function starred_init(&$a) {
 
        $starred = 0;
 
-       if(! local_user())
+       if (! local_user()) {
                killme();
-       if($a->argc > 1)
+       }
+       if ($a->argc > 1) {
                $message_id = intval($a->argv[1]);
-       if(! $message_id)
+       }
+       if (! $message_id) {
                killme();
+       }
 
        $r = q("SELECT starred FROM item WHERE uid = %d AND id = %d LIMIT 1",
                intval(local_user()),
index 73f5ffe4b218722247617cf42ab9dcbd9590b6c5..a328b9768b63ae75469f7bc93c63a84694ea10ed 100644 (file)
@@ -5,12 +5,13 @@ require_once('include/contact_widgets.php');
 
 
 function suggest_init(&$a) {
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
-       if(x($_GET,'ignore') && intval($_GET['ignore'])) {
+       if (x($_GET,'ignore') && intval($_GET['ignore'])) {
                // Check if we should do HTML-based delete confirmation
-               if($_REQUEST['confirm']) {
+               if ($_REQUEST['confirm']) {
                        // <form> can't take arguments in its "action" parameter
                        // so add any arguments as hidden inputs
                        $query = explode_querystring($a->query_string);
@@ -35,7 +36,7 @@ function suggest_init(&$a) {
                        return;
                }
                // Now check how the user responded to the confirmation query
-               if(!$_REQUEST['canceled']) {
+               if (!$_REQUEST['canceled']) {
                        q("INSERT INTO `gcign` ( `uid`, `gcid` ) VALUES ( %d, %d ) ",
                                intval(local_user()),
                                intval($_GET['ignore'])
@@ -54,7 +55,7 @@ function suggest_content(&$a) {
        require_once("mod/proxy.php");
 
        $o = '';
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
index d6e57d36a93fe3e3664799b8158580e07bc49761..c39b4ba51e2f3d53888d1b8ad804150adb470948 100644 (file)
@@ -4,7 +4,7 @@ require_once('include/bbcode.php');
 
 function tagrm_post(&$a) {
 
-       if(! local_user())
+       if (! local_user())
                goaway(App::get_baseurl() . '/' . $_SESSION['photo_return']);
 
 
@@ -52,7 +52,7 @@ function tagrm_content(&$a) {
 
        $o = '';
 
-       if(! local_user()) {
+       if (! local_user()) {
                goaway(App::get_baseurl() . '/' . $_SESSION['photo_return']);
                // NOTREACHED
        }
@@ -63,7 +63,6 @@ function tagrm_content(&$a) {
                // NOTREACHED
        }
 
-
        $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                intval($item),
                intval(local_user())
@@ -75,8 +74,9 @@ function tagrm_content(&$a) {
 
        $arr = explode(',', $r[0]['tag']);
 
-       if(! count($arr))
+       if (! count($arr)) {
                goaway(App::get_baseurl() . '/' . $_SESSION['photo_return']);
+       }
 
        $o .= '<h3>' . t('Remove Item Tag') . '</h3>';
 
index d9bd5ae01eba0ae8f3a320e40071e8347c2d00fd..140f19a59bf42251b632fb9659dc33310b89f7ea 100644 (file)
@@ -1,11 +1,12 @@
 <?php
 
 function uexport_init(&$a){
-       if(! local_user())
+       if (! local_user()) {
                killme();
+       }
 
        require_once("mod/settings.php");
-        settings_init($a);
+       settings_init($a);
 }
 
 function uexport_content(&$a){
index 904b1442505d6f1aea9e58ae6335ea8dacb92485..94ed9b5dc247f602feaa6ad21a0df9af43bc73a6 100644 (file)
@@ -3,7 +3,7 @@
 
 function viewsrc_content(&$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Access denied.') . EOL);
                return;
        }
index 2c798962278ced9ee30ddd4223973c36883fd0c8..749a377fc66d3e650b04ca0c8506e127a42d6cfd 100644 (file)
@@ -6,60 +6,67 @@
 
 
 function theme_content(&$a){
-    if(!local_user())
-        return;                
+       if (!local_user()) {
+               return;
+       }
 
-    $colorset = get_pconfig( local_user(), 'duepuntozero', 'colorset');
-    $user = true;
+       $colorset = get_pconfig( local_user(), 'duepuntozero', 'colorset');
+       $user = true;
 
-    return clean_form($a, $colorset, $user);
+       return clean_form($a, $colorset, $user);
 }
 
 function theme_post(&$a){
-    if(! local_user())
-        return;
-    
-    if (isset($_POST['duepuntozero-settings-submit'])){
-        set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
-    }
+
+       if (! local_user()) {
+               return;
+       }
+
+       if (isset($_POST['duepuntozero-settings-submit'])){
+               set_pconfig(local_user(), 'duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
+       }
 }
 
 
 function theme_admin(&$a){
-    $colorset = get_config( 'duepuntozero', 'colorset');
-    $user = false;
+       $colorset = get_config( 'duepuntozero', 'colorset');
+       $user = false;
 
-    return clean_form($a, $colorset, $user);
+       return clean_form($a, $colorset, $user);
 }
 
 function theme_admin_post(&$a){
-    if (isset($_POST['duepuntozero-settings-submit'])){
-        set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
-    }
+       if (isset($_POST['duepuntozero-settings-submit'])){
+               set_config('duepuntozero', 'colorset', $_POST['duepuntozero_colorset']);
+       }
 }
 
 /// @TODO $a is no longer used
 function clean_form(&$a, &$colorset, $user){
-    $colorset = array(
-       'default'=>t('default'), 
-        'greenzero'=>t('greenzero'),
-        'purplezero'=>t('purplezero'),
-        'easterbunny'=>t('easterbunny'),
-        'darkzero'=>t('darkzero'),
-        'comix'=>t('comix'),
-        'slackr'=>t('slackr'),
-    );
-    if ($user) {
-        $color = get_pconfig(local_user(), 'duepuntozero', 'colorset');
-    } else {
-        $color = get_config( 'duepuntozero', 'colorset');
-    }
-    $t = get_markup_template("theme_settings.tpl" );
-    $o .= replace_macros($t, array(
-        '$submit'   => t('Submit'),
-        '$baseurl'  => App::get_baseurl(),
-        '$title'    => t("Theme settings"),
-        '$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
-    ));
-    return $o;
+       $colorset = array(
+               'default'=>t('default'), 
+               'greenzero'=>t('greenzero'),
+               'purplezero'=>t('purplezero'),
+               'easterbunny'=>t('easterbunny'),
+               'darkzero'=>t('darkzero'),
+               'comix'=>t('comix'),
+               'slackr'=>t('slackr'),
+       );
+
+       if ($user) {
+               $color = get_pconfig(local_user(), 'duepuntozero', 'colorset');
+       } else {
+               $color = get_config( 'duepuntozero', 'colorset');
+       }
+
+       $t = get_markup_template("theme_settings.tpl" );
+       /// @TODO No need for adding string here, $o is not defined
+       $o .= replace_macros($t, array(
+               '$submit'   => t('Submit'),
+               '$baseurl'  => App::get_baseurl(),
+               '$title'=> t("Theme settings"),
+               '$colorset' => array('duepuntozero_colorset', t('Variations'), $color, '', $colorset),
+       ));
+
+       return $o;
 }
index 589f1591a0dee3b345ecd3989f028773b1bef64e..edd16bd71fa30ce5a695b4f27dc9eecf312e3460 100644 (file)
@@ -2,7 +2,9 @@
 require_once('view/theme/frio/php/Image.php');
 
 function theme_content(&$a) {
-       if(!local_user()) { return;}
+       if (!local_user()) {
+               return;
+       }
        $arr = array();
 
        $arr["schema"]          = get_pconfig(local_user(),'frio', 'schema');
@@ -18,7 +20,10 @@ function theme_content(&$a) {
 }
 
 function theme_post(&$a) {
-       if(!local_user()) { return;}
+       if (!local_user()) {
+               return;
+       }
+
        if (isset($_POST['frio-settings-submit'])) {
                set_pconfig(local_user(), 'frio', 'schema',             $_POST["frio_schema"]);
                set_pconfig(local_user(), 'frio', 'nav_bg',             $_POST["frio_nav_bg"]);
index 2a32b9f05a7cf851c8f1cc4d8c03f9094b71669a..9a08adbaf9f99bf790c8388e2c3dd4ccf7843934 100644 (file)
@@ -6,21 +6,23 @@
 
 
 function theme_content(&$a){
-       if(!local_user())
-               return;         
-       
+       if (!local_user()) {
+               return;
+       }
+
        $align = get_pconfig(local_user(), 'quattro', 'align' );
        $color = get_pconfig(local_user(), 'quattro', 'color' );
-    $tfs = get_pconfig(local_user(),"quattro","tfs");
-    $pfs = get_pconfig(local_user(),"quattro","pfs");    
-    
+       $tfs = get_pconfig(local_user(),"quattro","tfs");
+       $pfs = get_pconfig(local_user(),"quattro","pfs");
+
        return quattro_form($a,$align, $color, $tfs, $pfs);
 }
 
 function theme_post(&$a){
-       if(! local_user())
+       if (! local_user()) {
                return;
-       
+       }
+
        if (isset($_POST['quattro-settings-submit'])){
                set_pconfig(local_user(), 'quattro', 'align', $_POST['quattro_align']);
                set_pconfig(local_user(), 'quattro', 'color', $_POST['quattro_color']);
index 0f07ff9a1eac023b157c8088932d1e9d6eefcda3..2989f6c5cfb1a8e229e6114db42ad8f4a5a97038 100644 (file)
@@ -6,19 +6,23 @@
 
 
 function theme_content(&$a){
-       if(!local_user())
+       if (!local_user()) {
                return;
+       }
 
-       if (!function_exists('get_vier_config'))
+       if (!function_exists('get_vier_config')) {
                return;
+       }
 
        $style = get_pconfig(local_user(), 'vier', 'style');
 
-       if ($style == "")
+       if ($style == "") {
                $style = get_config('vier', 'style');
+       }
 
-       if ($style == "")
+       if ($style == "") {
                $style = "plus";
+       }
 
        $show_pages = get_vier_config('show_pages', true);
        $show_profiles = get_vier_config('show_profiles', true);
@@ -32,8 +36,9 @@ function theme_content(&$a){
 }
 
 function theme_post(&$a){
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        if (isset($_POST['vier-settings-submit'])){
                set_pconfig(local_user(), 'vier', 'style', $_POST['vier_style']);