only allow richtext editor on pages if bbcode is the default mimetype, otherwise use plaintext editor. This will eventually need work to support a visual editor for html or other types.

This commit is contained in:
friendica 2013-09-02 13:39:13 -07:00
parent f44274bfca
commit 5f2a7573d5

View file

@ -1013,17 +1013,17 @@ function status_editor($a,$x,$popup=false) {
if(feature_enabled(local_user(),'richtext'))
$plaintext = false;
if(intval($x['plaintext']))
$plaintext = true;
$mimeselct = '';
if(array_key_exists('mimetype',$x) && $x['mimetype']) {
if($x['mimetype'] === 'choose')
if($x['mimetype'] != 'text/bbcode')
$plaintext = true;
if($x['mimetype'] === 'choose') {
$mimeselect = mimetype_select($x['profile_uid']);
}
else
$mimeselect = '<input name="mimetype" value="' . $x['mimetype'] . '" />';
$mimeselect = '<input name="mimetype" value="' . $x['mimetype'] . '" />';
}
$tpl = get_markup_template('jot-header.tpl');