Closed (fixed)
Project:
NoProb
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Dec 2006 at 03:06 UTC
Updated:
7 Jul 2007 at 13:32 UTC
I realise that this theme wasn't intended to have a header search, but it works well on my sites (I use this theme, slightly modified, on 3 sites, it's great!). only problem is that the search box doesn't work! this is the fix:
. the code was thus:
<?php if ($search_box): ?>
<form action=" <?php print url("search") ?> " method="post">
<div id="search">
<input class="form-text" type="text" size="15" value="" name="edit[keys]" id="edit-keys" /> <input class="form-submit" name="op" type="submit" value="<?php print t("Search")?>" />
</div>
</form>
<?php endif; ?>simply changed it to be the same as the bluemarine theme:
<?php if ($search_box): ?>
<?php print $search_box ?>
<?php endif; ?>and it works fine!
Comments
Comment #1
Eric3 commented