diff options
author | Martin Tschofen <mtbrains@comcast.net> | 2006-04-29 01:30:35 +0200 |
---|---|---|
committer | Martin Tschofen <mtbrains@comcast.net> | 2006-04-29 01:30:35 +0200 |
commit | 1211a7a9f36330691d4b1519e91e076ccdba439e (patch) | |
tree | 713aa022adb24a7a00bcbcc50e571593bb6d27d3 /inc | |
parent | ec79c838639b74f23c8d836368b08642ea8b4940 (diff) | |
download | rpg-1211a7a9f36330691d4b1519e91e076ccdba439e.tar.gz rpg-1211a7a9f36330691d4b1519e91e076ccdba439e.tar.bz2 |
Search index skips over hidden namespaces
darcs-hash:20060428233035-a265a-5b124304e8250f0c97bff5ce8fdc839170cc7f95.gz
Diffstat (limited to 'inc')
-rw-r--r-- | inc/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/search.php b/inc/search.php index 5de5a1f47..5f1ae6f1a 100644 --- a/inc/search.php +++ b/inc/search.php @@ -157,7 +157,7 @@ function search_index(&$data,$base,$file,$type,$lvl,$opts){ $id = pathID($file); //check hidden - if($type=='f' && isHiddenPage($id)){ + if(isHiddenPage($id)){ return false; } |