diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-09-24 18:46:07 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-09-24 18:46:07 +0000 |
commit | a1222d6430f86ed83aa4d464f30fe2e9742a4d1d (patch) | |
tree | a426827765cd2078212b0729196392d09f1a17ba /modules/search.module | |
parent | d264b4fc2bdd430e0b65ee55506f0f64b075edc4 (diff) | |
download | brdo-a1222d6430f86ed83aa4d464f30fe2e9742a4d1d.tar.gz brdo-a1222d6430f86ed83aa4d464f30fe2e9742a4d1d.tar.bz2 |
- Fixed translation bugs (reported by Alexander Schwartz)
Diffstat (limited to 'modules/search.module')
-rw-r--r-- | modules/search.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/search.module b/modules/search.module index 86049d67d..afe827b2e 100644 --- a/modules/search.module +++ b/modules/search.module @@ -17,7 +17,7 @@ function search_item($item, $type) { $output .= " <b><u><a href=\"". $item["link"] ."\">". $item["title"] ."</a></u></b><br />"; $output .= " <small>$type ". ($item["user"] ? " - ". $item["user"] : "") ."". ($item["date"] ? " - ". format_date($item["date"], "small") : "") ."</small>"; $output .= "</p>"; - + return $output; } @@ -70,7 +70,7 @@ function search_page() { /* ** Display form and search results: */ - + $theme->header(); if ($form) { |