summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-03-12 03:54:17 +0000
committerTim Almdal <tnalmdal@shaw.ca>2009-03-12 03:54:17 +0000
commit7dae7dc510651d25c4109e9943be8c2dc84260ff (patch)
tree7625070e6f300291d39f171d6f72b4b61e99defb /modules
parentd1f181da08cbb747a7353bf84fbaa5d1ab82bd02 (diff)
Strip down the loin page (not sure if this is what bharat had in mind)
Diffstat (limited to 'modules')
-rw-r--r--modules/search/helpers/search_theme.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/search/helpers/search_theme.php b/modules/search/helpers/search_theme.php
index 63cc41c4..08d4b2e1 100644
--- a/modules/search/helpers/search_theme.php
+++ b/modules/search/helpers/search_theme.php
@@ -19,7 +19,11 @@
*/
class search_theme_Core {
static function header_top($theme) {
- $view = new View("search_link.html");
- return $view->render();
+ if ($theme->page_type() != "login") {
+ $view = new View("search_link.html");
+ return $view->render();
+ }else {
+ return "";
+ }
}
} \ No newline at end of file