diff options
Diffstat (limited to 'inc/common.php')
-rw-r--r-- | inc/common.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/common.php b/inc/common.php index 4e8dd1f85..4092eb766 100644 --- a/inc/common.php +++ b/inc/common.php @@ -660,6 +660,9 @@ function _handleRecent($line,$ns,$flags){ // remember in seen to skip additional sights $seen[$id] = 1; + // check if it's a hidden page + if(isHiddenPage($id)) return false; + // filter namespace if (($ns) && (strpos($id,$ns.':') !== 0)) return false; |