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

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.