diff options
author | friendica <info@friendica.com> | 2012-11-05 01:25:08 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-05 01:25:08 -0800 |
commit | 2752b58f3323a15b964f6518b7720cb81ccf1b0e (patch) | |
tree | 6291006fdbe002d63adcca5a6c369457d10765e3 /include/conversation.php | |
parent | 5f85f65dcc71c4fea12a2227b5773b991d19199f (diff) | |
download | volse-hubzilla-2752b58f3323a15b964f6518b7720cb81ccf1b0e.tar.gz volse-hubzilla-2752b58f3323a15b964f6518b7720cb81ccf1b0e.tar.bz2 volse-hubzilla-2752b58f3323a15b964f6518b7720cb81ccf1b0e.zip |
plaintext default - richtext is a feature
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/conversation.php b/include/conversation.php index e9e550a12..532fe0ba1 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1661,9 +1661,9 @@ function status_editor($a,$x,$popup=false) { $geotag = (($x['allow_location']) ? get_markup_template('jot_geotag.tpl') : ''); - $plaintext = false; - if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) - $plaintext = true; + $plaintext = true; + if(feature_enabled(local_user(),'richtext')) + $plaintext = false; $tpl = get_markup_template('jot-header.tpl'); |