diff --git a/doc/themes.md b/doc/themes.md
index 0ae7e694f..0b8f6cb83 100644
--- a/doc/themes.md
+++ b/doc/themes.md
@@ -124,8 +124,9 @@ The selected 1st part will be saved in the database by the theme_post function.
function theme_post(App &$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
diff --git a/include/acl_selectors.php b/include/acl_selectors.php
index cd68ffaa7..c1edc8cc0 100644
--- a/include/acl_selectors.php
+++ b/include/acl_selectors.php
@@ -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);
diff --git a/include/contact_widgets.php b/include/contact_widgets.php
index a74080e75..71a75d431 100644
--- a/include/contact_widgets.php
+++ b/include/contact_widgets.php
@@ -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();
diff --git a/include/group.php b/include/group.php
index 67712aae7..a2a55c444 100644
--- a/include/group.php
+++ b/include/group.php
@@ -234,7 +234,7 @@ function group_side($every="contacts",$each="group",$editmode = "standard", $gro
$o = '';
- if(! local_user())
+ if (! local_user())
return '';
$groups = array();
diff --git a/mod/allfriends.php b/mod/allfriends.php
index 43490e964..f9cffcbb2 100644
--- a/mod/allfriends.php
+++ b/mod/allfriends.php
@@ -8,16 +8,18 @@ require_once('mod/contacts.php');
function allfriends_content(App &$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(App &$a) {
intval(local_user())
);
- if(! count($c))
+ if (! count($c)) {
+ }
return;
$a->page['aside'] = "";
diff --git a/mod/api.php b/mod/api.php
index b398daac8..74a0cff6f 100644
--- a/mod/api.php
+++ b/mod/api.php
@@ -22,7 +22,7 @@ function oauth_get_client($request){
function api_post(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
@@ -84,7 +84,7 @@ function api_content(App &$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());
diff --git a/mod/bookmarklet.php b/mod/bookmarklet.php
index 1d6806943..9bc8c3353 100644
--- a/mod/bookmarklet.php
+++ b/mod/bookmarklet.php
@@ -8,7 +8,7 @@ function bookmarklet_init(App &$a) {
}
function bookmarklet_content(App &$a) {
- if(!local_user()) {
+ if (!local_user()) {
$o = '
'.t('Login').'
';
$o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
return $o;
diff --git a/mod/community.php b/mod/community.php
index 7a1e72733..2c2ea32b3 100644
--- a/mod/community.php
+++ b/mod/community.php
@@ -1,7 +1,7 @@
argv[1]==="batch") {
contacts_batch_actions($a);
@@ -147,15 +149,16 @@ function contacts_post(App &$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(App &$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(App &$a) {
nav_set_selected('contacts');
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/content.php b/mod/content.php
index 1a3fb1095..2377032a7 100644
--- a/mod/content.php
+++ b/mod/content.php
@@ -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;
}
diff --git a/mod/crepair.php b/mod/crepair.php
index 308d5b95e..2661deaee 100644
--- a/mod/crepair.php
+++ b/mod/crepair.php
@@ -3,8 +3,9 @@ require_once("include/contact_selectors.php");
require_once("mod/contacts.php");
function crepair_init(App &$a) {
- if(! local_user())
+ if (! local_user()) {
return;
+ }
$contact_id = 0;
@@ -31,8 +32,9 @@ function crepair_init(App &$a) {
function crepair_post(App &$a) {
- if(! local_user())
+ if (! local_user()) {
return;
+ }
$cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
@@ -97,7 +99,7 @@ function crepair_post(App &$a) {
function crepair_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/delegate.php b/mod/delegate.php
index 7dbeef737..8470a7ba0 100644
--- a/mod/delegate.php
+++ b/mod/delegate.php
@@ -8,7 +8,7 @@ function delegate_init(App &$a) {
function delegate_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/dirfind.php b/mod/dirfind.php
index 80cba1c47..fc5750f2d 100644
--- a/mod/dirfind.php
+++ b/mod/dirfind.php
@@ -7,7 +7,7 @@ require_once('mod/contacts.php');
function dirfind_init(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL );
return;
}
diff --git a/mod/editpost.php b/mod/editpost.php
index 29f3dadff..1bf150a5d 100644
--- a/mod/editpost.php
+++ b/mod/editpost.php
@@ -6,14 +6,14 @@ function editpost_content(App &$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(App &$a) {
intval(local_user())
);
- if(! count($itm)) {
+ if (! count($itm)) {
notice( t('Item not found') . EOL);
return;
}
diff --git a/mod/events.php b/mod/events.php
index bf65ff126..0c1e9ae2f 100644
--- a/mod/events.php
+++ b/mod/events.php
@@ -9,8 +9,9 @@ require_once('include/event.php');
require_once('include/items.php');
function events_init(App &$a) {
- if(! local_user())
+ if (! local_user()) {
return;
+ }
if ($a->argc == 1) {
// if it's a json request abort here becaus we don't
@@ -34,8 +35,9 @@ function events_post(App &$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);
@@ -187,7 +189,7 @@ function events_post(App &$a) {
function events_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/filer.php b/mod/filer.php
index 4198502c4..1b5589380 100644
--- a/mod/filer.php
+++ b/mod/filer.php
@@ -7,7 +7,7 @@ require_once('include/items.php');
function filer_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
killme();
}
diff --git a/mod/filerm.php b/mod/filerm.php
index e109ed404..cdc5a034a 100644
--- a/mod/filerm.php
+++ b/mod/filerm.php
@@ -2,7 +2,7 @@
function filerm_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
killme();
}
diff --git a/mod/follow.php b/mod/follow.php
index d17c874f6..56e698547 100644
--- a/mod/follow.php
+++ b/mod/follow.php
@@ -7,7 +7,7 @@ require_once('include/contact_selectors.php');
function follow_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
goaway($_SESSION['return_url']);
// NOTREACHED
@@ -151,7 +151,7 @@ function follow_content(App &$a) {
function follow_post(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
goaway($_SESSION['return_url']);
// NOTREACHED
diff --git a/mod/fsuggest.php b/mod/fsuggest.php
index 9d862848f..fcbadcc9b 100644
--- a/mod/fsuggest.php
+++ b/mod/fsuggest.php
@@ -3,12 +3,13 @@
function fsuggest_post(App &$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(App &$a) {
require_once('include/acl_selectors.php');
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/group.php b/mod/group.php
index 75bb2b7c8..fc5c48181 100644
--- a/mod/group.php
+++ b/mod/group.php
@@ -15,7 +15,7 @@ function group_init(App &$a) {
function group_post(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
@@ -73,7 +73,7 @@ function group_post(App &$a) {
function group_content(App &$a) {
$change = false;
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied') . EOL);
return;
}
diff --git a/mod/ignored.php b/mod/ignored.php
index 446d12a6a..99b3a3ddc 100644
--- a/mod/ignored.php
+++ b/mod/ignored.php
@@ -5,12 +5,15 @@ function ignored_init(App &$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(App &$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(App &$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";
diff --git a/mod/invite.php b/mod/invite.php
index 79b30d6e4..2db71742f 100644
--- a/mod/invite.php
+++ b/mod/invite.php
@@ -11,7 +11,7 @@ require_once('include/email.php');
function invite_post(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
@@ -97,7 +97,7 @@ function invite_post(App &$a) {
function invite_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/manage.php b/mod/manage.php
index 3eecfbb71..835a7fbcb 100644
--- a/mod/manage.php
+++ b/mod/manage.php
@@ -5,8 +5,9 @@ require_once("include/text.php");
function manage_post(App &$a) {
- if(! local_user())
+ if (! local_user()) {
return;
+ }
$uid = local_user();
$orig_record = $a->user;
@@ -93,7 +94,7 @@ function manage_post(App &$a) {
function manage_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/match.php b/mod/match.php
index cdf2f8eac..8bc255023 100644
--- a/mod/match.php
+++ b/mod/match.php
@@ -16,8 +16,9 @@ require_once('mod/proxy.php');
function match_content(App &$a) {
$o = '';
- if(! local_user())
+ if (! local_user()) {
return;
+ }
$a->page['aside'] .= findpeople_widget();
$a->page['aside'] .= follow_widget();
diff --git a/mod/message.php b/mod/message.php
index 0191eab0c..ef62a7898 100644
--- a/mod/message.php
+++ b/mod/message.php
@@ -42,7 +42,7 @@ function message_init(App &$a) {
function message_post(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
@@ -178,7 +178,7 @@ function message_content(App &$a) {
$o = '';
nav_set_selected('messages');
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/mood.php b/mod/mood.php
index e98c16108..0e603c869 100644
--- a/mod/mood.php
+++ b/mod/mood.php
@@ -7,8 +7,9 @@ require_once('include/items.php');
function mood_init(App &$a) {
- if(! local_user())
+ if (! local_user()) {
return;
+ }
$uid = local_user();
$verb = notags(trim($_GET['verb']));
@@ -110,7 +111,7 @@ function mood_init(App &$a) {
function mood_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/network.php b/mod/network.php
index dde3a3bae..8b24b3e11 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -1,6 +1,6 @@
query_string;
return login(false);
}
diff --git a/mod/nogroup.php b/mod/nogroup.php
index 3cf02069d..900ca4de0 100644
--- a/mod/nogroup.php
+++ b/mod/nogroup.php
@@ -6,14 +6,16 @@ require_once('include/contact_selectors.php');
function nogroup_init(App &$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(App &$a) {
function nogroup_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return '';
}
diff --git a/mod/notes.php b/mod/notes.php
index f50f41eaf..b2aa5487a 100644
--- a/mod/notes.php
+++ b/mod/notes.php
@@ -2,8 +2,9 @@
function notes_init(App &$a) {
- if(! local_user())
+ if (! local_user()) {
return;
+ }
$profile = 0;
@@ -18,7 +19,7 @@ function notes_init(App &$a) {
function notes_content(&$a,$update = false) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/notifications.php b/mod/notifications.php
index e7f32a587..e4fa08f3e 100644
--- a/mod/notifications.php
+++ b/mod/notifications.php
@@ -11,7 +11,7 @@ require_once("include/network.php");
function notifications_post(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
goaway(z_root());
}
@@ -67,7 +67,7 @@ function notifications_post(App &$a) {
function notifications_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/oexchange.php b/mod/oexchange.php
index 83b9453f2..49c5d01f4 100644
--- a/mod/oexchange.php
+++ b/mod/oexchange.php
@@ -16,12 +16,12 @@ function oexchange_init(App &$a) {
function oexchange_content(App &$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;
}
diff --git a/mod/ostatus_subscribe.php b/mod/ostatus_subscribe.php
index 55abdf183..ba17e28b7 100644
--- a/mod/ostatus_subscribe.php
+++ b/mod/ostatus_subscribe.php
@@ -5,7 +5,7 @@ require_once('include/follow.php');
function ostatus_subscribe_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
goaway($_SESSION['return_url']);
// NOTREACHED
diff --git a/mod/poke.php b/mod/poke.php
index cc6d4ff89..2e15ed853 100644
--- a/mod/poke.php
+++ b/mod/poke.php
@@ -21,25 +21,29 @@ require_once('include/items.php');
function poke_init(App &$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(App &$a) {
function poke_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/profile_photo.php b/mod/profile_photo.php
index fd7302e4d..356c507f7 100644
--- a/mod/profile_photo.php
+++ b/mod/profile_photo.php
@@ -4,7 +4,7 @@ require_once("include/Photo.php");
function profile_photo_init(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
return;
}
@@ -15,7 +15,7 @@ function profile_photo_init(App &$a) {
function profile_photo_post(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice ( t('Permission denied.') . EOL );
return;
}
@@ -172,7 +172,7 @@ function profile_photo_post(App &$a) {
if(! function_exists('profile_photo_content')) {
function profile_photo_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL );
return;
}
diff --git a/mod/profiles.php b/mod/profiles.php
index cca7a57ec..20bd4cf6f 100644
--- a/mod/profiles.php
+++ b/mod/profiles.php
@@ -6,7 +6,7 @@ function profiles_init(App &$a) {
nav_set_selected('profiles');
- if(! local_user()) {
+ if (! local_user()) {
return;
}
@@ -162,7 +162,7 @@ function profile_clean_keywords($keywords) {
function profiles_post(App &$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(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
diff --git a/mod/profperm.php b/mod/profperm.php
index 694e2f4db..bbb055b02 100644
--- a/mod/profperm.php
+++ b/mod/profperm.php
@@ -2,8 +2,9 @@
function profperm_init(App &$a) {
- if(! local_user())
+ if (! local_user()) {
return;
+ }
$which = $a->user['nickname'];
$profile = $a->argv[1];
@@ -15,7 +16,7 @@ function profperm_init(App &$a) {
function profperm_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied') . EOL);
return;
}
diff --git a/mod/qsearch.php b/mod/qsearch.php
index b42b1cfd8..118c93d9f 100644
--- a/mod/qsearch.php
+++ b/mod/qsearch.php
@@ -2,8 +2,9 @@
function qsearch_init(App &$a) {
- if(! local_user())
+ if (! local_user()) {
killme();
+ }
$limit = (get_config('system','qsearch_limit') ? intval(get_config('system','qsearch_limit')) : 100);
diff --git a/mod/regmod.php b/mod/regmod.php
index 60da71321..44bdfe664 100644
--- a/mod/regmod.php
+++ b/mod/regmod.php
@@ -103,32 +103,33 @@ function regmod_content(App &$a) {
$_SESSION['return_url'] = $a->cmd;
- if(! local_user()) {
+ if (! local_user()) {
info( t('Please login.') . EOL);
$o .= '
' . 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();
diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php
index 2ade3c2dc..07721220a 100755
--- a/mod/repair_ostatus.php
+++ b/mod/repair_ostatus.php
@@ -5,7 +5,7 @@ require_once('include/follow.php');
function repair_ostatus_content(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL);
goaway($_SESSION['return_url']);
// NOTREACHED
diff --git a/mod/settings.php b/mod/settings.php
index 97d4f5f60..9aa7c5762 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -18,7 +18,7 @@ function get_theme_config_file($theme){
function settings_init(App &$a) {
- if(! local_user()) {
+ if (! local_user()) {
notice( t('Permission denied.') . EOL );
return;
}
@@ -118,8 +118,9 @@ function settings_init(App &$a) {
function settings_post(App &$a) {
- if(! local_user())
+ if (! local_user()) {
return;
+ }
if (x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
return;
@@ -658,7 +659,7 @@ function settings_content(App &$a) {
$o = '';
nav_set_selected('settings');
- if(! local_user()) {
+ if (! local_user()) {
#notice( t('Permission denied.') . EOL );
return;
}
diff --git a/mod/starred.php b/mod/starred.php
index f3fc5870e..0a78f51aa 100644
--- a/mod/starred.php
+++ b/mod/starred.php
@@ -7,12 +7,15 @@ function starred_init(App &$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()),
diff --git a/mod/suggest.php b/mod/suggest.php
index 514b8f83c..5af337ae1 100644
--- a/mod/suggest.php
+++ b/mod/suggest.php
@@ -5,12 +5,13 @@ require_once('include/contact_widgets.php');
function suggest_init(App &$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']) {
//