do not under any circumstances allow a delegated forum admin to access the site admin page.

This commit is contained in:
friendica 2012-02-16 23:50:57 -08:00
parent 48f5bd492d
commit 0500fc2826
1 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,10 @@ function admin_post(&$a){
if(!is_site_admin()) { if(!is_site_admin()) {
return; return;
} }
if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
return;
// urls // urls
if ($a->argc > 1){ if ($a->argc > 1){
@ -50,6 +54,9 @@ function admin_content(&$a) {
return login(false); return login(false);
} }
if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
return;
/** /**
* Side bar links * Side bar links
*/ */