move admin permission decision out of the router - it is already provided in the module and the higher level check is causing some oembed redirect issues.

This commit is contained in:
zotlabs 2017-02-25 16:22:09 -08:00
parent 92615247ac
commit 8783ccfd72
2 changed files with 1 additions and 7 deletions

View file

@ -62,12 +62,6 @@ class Router {
}
}
if((strpos($module,'admin') === 0) && (! is_site_admin())) {
\App::$module_loaded = false;
notice( t('Permission denied.') . EOL);
goaway(z_root());
}
/*
* If the site has a custom module to over-ride the standard module, use it.
* Otherwise, look for the standard program module

View file

@ -1566,7 +1566,7 @@ function widget_admin($arr) {
*/
if(! is_site_admin()) {
return login(false);
return '';
}
$o = '';