From: friendica Date: Fri, 17 Feb 2012 07:50:57 +0000 (-0800) Subject: do not under any circumstances allow a delegated forum admin to access the site admin... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0500fc2826e01d0570139fe5218f223d3a918970;p=friendica.git do not under any circumstances allow a delegated forum admin to access the site admin page. --- diff --git a/mod/admin.php b/mod/admin.php index e444040973..c79af8d5ba 100755 --- a/mod/admin.php +++ b/mod/admin.php @@ -9,6 +9,10 @@ function admin_post(&$a){ if(!is_site_admin()) { return; } + + + if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) + return; // urls if ($a->argc > 1){ @@ -50,6 +54,9 @@ function admin_content(&$a) { return login(false); } + if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) + return; + /** * Side bar links */