diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-01-18 23:55:18 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-01-18 23:55:18 +0100 |
commit | e6b3271c70df02c47b794d9adc32ca6bbe39742a (patch) | |
tree | c7579a12dfc660a892b2aa9a2c10a0630b6b9ae7 /inc/html.php | |
parent | bc769d32cfa28f8965ecb0cd8f4691567565cc98 (diff) | |
download | rpg-e6b3271c70df02c47b794d9adc32ca6bbe39742a.tar.gz rpg-e6b3271c70df02c47b794d9adc32ca6bbe39742a.tar.bz2 |
Always show pageids for "matching pagenames" FS#1227
darcs-hash:20080118225518-7ad00-772f0368e71ffe5868d1ba0a5ca2fcc1010f1bf9.gz
Diffstat (limited to 'inc/html.php')
-rw-r--r-- | inc/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php index c6c007553..f83300798 100644 --- a/inc/html.php +++ b/inc/html.php @@ -332,7 +332,7 @@ function html_search(){ print '<ul class="search_quickhits">'; foreach($data as $id){ print '<li> '; - print html_wikilink(':'.$id,$conf['useheading']?NULL:$id); + print html_wikilink(':'.$id,null); print '</li> '; } print '</ul> '; |