diff options
author | o <o@immerda.ch> | 2011-03-05 17:47:52 +0100 |
---|---|---|
committer | o <o@immerda.ch> | 2011-03-05 17:47:52 +0100 |
commit | 56435dde8dffa26720d211897ec7527a7d45a41e (patch) | |
tree | 2e625ad8878c5b3e97bde56d07cf2f994eda5c2d /sidebar.php | |
parent | 9e8062b9578a8b6d9b4e122c7c99c8e1eada7a3d (diff) |
chrome doesn't like empty src tag
Diffstat (limited to 'sidebar.php')
-rw-r--r-- | sidebar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sidebar.php b/sidebar.php index b26d849..82fe44c 100644 --- a/sidebar.php +++ b/sidebar.php @@ -6,7 +6,7 @@ <h3>Search</h3>
<form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">
<input type="text" value="Search" name="s" id="search_input" onfocus="this.value=''; changefc('white');" />
- <input type="image" src="" title="Search" id="search_button" />
+ <input type="image" src="<?php bloginfo('template_url'); ?>/images/blank.png" title="Search" id="search_button" />
</form>
</div>
<?php if ( !function_exists('dynamic_sidebar')
|