diff options
author | friendica <info@friendica.com> | 2015-03-05 18:30:15 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-05 18:30:15 -0800 |
commit | ea8ea5a351d36b3575c98ccb0dda58805186d154 (patch) | |
tree | 84f34eb59498c2d7f7b71378ded2bde9846782b1 /mod/settings.php | |
parent | 22391a24378cae317cdf62dc4be4b31b68e8191f (diff) | |
download | volse-hubzilla-ea8ea5a351d36b3575c98ccb0dda58805186d154.tar.gz volse-hubzilla-ea8ea5a351d36b3575c98ccb0dda58805186d154.tar.bz2 volse-hubzilla-ea8ea5a351d36b3575c98ccb0dda58805186d154.zip |
reverse the logic of "don't show emoticons" setting which seems awkward
Diffstat (limited to 'mod/settings.php')
-rw-r--r-- | mod/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/settings.php b/mod/settings.php index bb0bfacbd..3dea83bb6 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -853,7 +853,7 @@ function settings_content(&$a) { '$user_scalable' => array('user_scalable', t("Enable user zoom on mobile devices"), $user_scalable, '', $yes_no), '$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')), '$itemspage' => array('itemspage', t("Maximum number of conversations to load at any time:"), $itemspage, t('Maximum of 100 items')), - '$nosmile' => array('nosmile', t("Don't show emoticons"), $nosmile, '', $yes_no), + '$nosmile' => array('nosmile', t("Show emoticons (smilies) as images"), 1-intval($nosmile), '', $yes_no), '$title_tosource' => array('title_tosource', t("Link post titles to source"), $title_tosource, '', $yes_no), '$layout_editor' => t('System Page Layout Editor - (advanced)'), '$theme_config' => $theme_config, |