diff options
author | friendica <info@friendica.com> | 2014-04-07 16:25:35 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-07 16:25:35 -0700 |
commit | 03753f463e05c965a460e64efca9478efc0271c1 (patch) | |
tree | 6eec8a535537cd5372407e8b970264459274a05a /include/text.php | |
parent | 74029a9ee9b0dfdb98d88a3697beabfcd8ab29d0 (diff) | |
download | volse-hubzilla-03753f463e05c965a460e64efca9478efc0271c1.tar.gz volse-hubzilla-03753f463e05c965a460e64efca9478efc0271c1.tar.bz2 volse-hubzilla-03753f463e05c965a460e64efca9478efc0271c1.zip |
convert /network saved search to bootstrap buttons
Diffstat (limited to 'include/text.php')
-rwxr-xr-x | include/text.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php index 48a7ed368..520c9c506 100755 --- a/include/text.php +++ b/include/text.php @@ -801,9 +801,9 @@ function searchbox($s,$id='search-box',$url='/search',$save = false) { $o .= '<form action="' . z_root() . '/' . $url . '" method="get" >'; $o .= '<input type="hidden" name="f" value="" />'; $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') . '" />'; + $o .= '<input type="submit" name="submit" class="btn btn-default" id="search-submit" value="' . t('Search') . '" />'; if(feature_enabled(local_user(),'savedsearch')) - $o .= '<input type="submit" name="searchsave" id="search-save" value="' . t('Save') . '" />'; + $o .= '<input type="submit" name="searchsave" class="btn btn-default" id="search-save" value="' . t('Save') . '" />'; $o .= '</form></div>'; return $o; } |