diff --git a/inc/pageutils.php b/inc/pageutils.php
index abfca08de1d3a8585eaadb7a5499f8a7b9c34f20..e509dfde37cd1542443935d9b89780d5f2e96cbc 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;