diff options
author | friendica <info@friendica.com> | 2013-10-10 02:15:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-10 02:15:44 -0700 |
commit | 3985aa07b4d81474615a3bb8e5a94a0217715267 (patch) | |
tree | 65b55c060d792aa72dea1eb4a013a8a7d6863fe4 /include/text.php | |
parent | 87f1c6b8ecaf796409c6dfeb8735ce0af2ba410c (diff) | |
download | volse-hubzilla-3985aa07b4d81474615a3bb8e5a94a0217715267.tar.gz volse-hubzilla-3985aa07b4d81474615a3bb8e5a94a0217715267.tar.bz2 volse-hubzilla-3985aa07b4d81474615a3bb8e5a94a0217715267.zip |
more icon tweaks - this could be going on for some time; try to get icon code (and all theme stuff) out of main code and into templates, but on the short term provide both so nothing breaks.
Diffstat (limited to 'include/text.php')
-rwxr-xr-x | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 8efa1e925..8f700458c 100755 --- a/include/text.php +++ b/include/text.php @@ -726,7 +726,7 @@ function search($s,$id='search-box',$url='/search',$save = false) { $a = get_app(); $o = '<div id="' . $id . '">'; $o .= '<form action="' . $a->get_baseurl((stristr($url,'network')) ? true : false) . $url . '" method="get" >'; - $o .= '<input type="text" name="search" id="search-text" placeholder="' . t('Search') . '" value="' . $s .'" onclick="this.submit();" />'; + $o .= '<input type="text" class="icon-search" name="search" id="search-text" placeholder="" value="' . $s .'" onclick="this.submit();" />'; $o .= '<input type="submit" name="submit" id="search-submit" value="' . t('Search') . '" />'; if($save) $o .= '<input type="submit" name="save" id="search-save" value="' . t('Save') . '" />'; |