diff options
author | friendica <info@friendica.com> | 2013-12-09 15:45:52 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-09 15:45:52 -0800 |
commit | 70a81d6ad5f2c03277fcdbdc079820946022e8c1 (patch) | |
tree | e93c2c6f045fcef4661bdcba2d5078766dae0c82 /include | |
parent | f85cba10eb3d976d715c7a80fe69fe15d9dc468c (diff) | |
parent | 76d8501d671ae7d4234f1a905cd0e506c7f9b23e (diff) | |
download | volse-hubzilla-70a81d6ad5f2c03277fcdbdc079820946022e8c1.tar.gz volse-hubzilla-70a81d6ad5f2c03277fcdbdc079820946022e8c1.tar.bz2 volse-hubzilla-70a81d6ad5f2c03277fcdbdc079820946022e8c1.zip |
Merge branch 'master' of https://github.com/git-marijus/red
Conflicts:
view/theme/redbasic/css/style.css
Diffstat (limited to 'include')
-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 9254508a4..f425690ba 100755 --- a/include/text.php +++ b/include/text.php @@ -734,7 +734,7 @@ function search($s,$id='search-box',$url='/search',$save = false) { $o .= '<form action="' . $a->get_baseurl((stristr($url,'network')) ? true : false) . $url . '" method="get" >'; $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) + if(feature_enabled(local_user(),'savedsearch')) $o .= '<input type="submit" name="save" id="search-save" value="' . t('Save') . '" />'; $o .= '</form></div>'; return $o; |