diff options
Diffstat (limited to 'inc/pageutils.php')
-rw-r--r-- | inc/pageutils.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/inc/pageutils.php b/inc/pageutils.php index abfca08de..e509dfde3 100644 --- a/inc/pageutils.php +++ b/inc/pageutils.php @@ -479,7 +479,9 @@ function getCacheName($data,$ext=''){ */ function isHiddenPage($id){ global $conf; + global $ACT; if(empty($conf['hidepages'])) return false; + if($ACT == 'admin') return false; if(preg_match('/'.$conf['hidepages'].'/ui',':'.$id)){ return true; |