Closed (fixed)
Project:
Scruffy
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Mar 2009 at 19:36 UTC
Updated:
28 Mar 2009 at 20:10 UTC
The submit button appears to be missing if your site is installed in a subdirectory. This problem can be solved by opening the search-theme-form.tpl.php:
replace:
<input class="submit" name="op" value="Submit" type="image" src="<?php echo '/' . $directory . '/img/submit.jpg'; ?>" />
with:
<input class="submit" name="op" value="Submit" type="image" src="<?php echo $base_path . $directory . '/img/submit.jpg'; ?>" />
Comments