Skip to content
Snippets Groups Projects
Commit e6a873d7 authored by Michael Klier's avatar Michael Klier
Browse files

do not hide pages when ACT

darcs-hash:20081011162901-23886-c2ed10a43f6968703ac11be4e33d19af2b1137d8.gz
parent 50ddb617
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment