diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-12 03:54:17 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-12 03:54:17 +0000 |
| commit | 7dae7dc510651d25c4109e9943be8c2dc84260ff (patch) | |
| tree | 7625070e6f300291d39f171d6f72b4b61e99defb /modules | |
| parent | d1f181da08cbb747a7353bf84fbaa5d1ab82bd02 (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.php | 8 |
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 |
