Skip to content
Snippets Groups Projects
Commit c6e92a3c authored by David Lorentsen's avatar David Lorentsen
Browse files

hide pageinfo if no access

darcs-hash:20070221133007-ce218-844345922ee66ce33c3f0969b5fc6d643ac618ce.gz
parent 59f042c9
No related branches found
No related tags found
No related merge requests found
...@@ -761,7 +761,11 @@ function tpl_pageinfo(){ ...@@ -761,7 +761,11 @@ function tpl_pageinfo(){
global $lang; global $lang;
global $INFO; global $INFO;
global $REV; global $REV;
global $ID;
// return if we are not allowed to view the page
if (!auth_quickaclcheck($ID)) { return; }
// prepare date and path // prepare date and path
$fn = $INFO['filepath']; $fn = $INFO['filepath'];
if(!$conf['fullpath']){ if(!$conf['fullpath']){
......
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