summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnika Henke <a.c.henke@arcor.de>2006-02-04 18:20:36 +0100
committerAnika Henke <a.c.henke@arcor.de>2006-02-04 18:20:36 +0100
commit140c93f3d5b3773cf7b464de8bcec4c4d970cda7 (patch)
tree3954f5b7211d56f6cc516aa6f0dee410da7e5027
parent4f732f0eed0ad448c05a8b70cf383b9f6b643c2b (diff)
downloadrpg-140c93f3d5b3773cf7b464de8bcec4c4d970cda7.tar.gz
rpg-140c93f3d5b3773cf7b464de8bcec4c4d970cda7.tar.bz2
small fix of quick results
darcs-hash:20060204172036-d5083-05e07c95a561852f9514fc12e23c71a8e012acbc.gz
-rw-r--r--inc/html.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/html.php b/inc/html.php
index 16a5cc3ba..4c0220f96 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -343,13 +343,13 @@ function html_search(){
sort($data);
print '<div class="search_quickresult">';
print '<h3>'.$lang[quickhits].':</h3>';
+ print '<ul class="search_quickhits">';
foreach($data as $id){
- print '<ul class="search_quickhits">';
print '<li> ';
print html_wikilink(':'.$id,$conf['useheading']?NULL:$id);
print '</li> ';
- print '</ul> ';
}
+ print '</ul> ';
//clear float (see http://www.complexspiral.com/publications/containing-floats/)
print '<div class="clearer">&nbsp;</div>';
print '</div>';