Disable RTE when editing comments. Props mdawaffe. fixes #3449

git-svn-id: https://develop.svn.wordpress.org/trunk@4622 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2006-12-07 00:38:54 +00:00
parent eb9bedc517
commit dd36543bce
1 changed files with 3 additions and 3 deletions

View File

@ -782,10 +782,10 @@ function rich_edit_exists() {
} }
function user_can_richedit() { function user_can_richedit() {
global $wp_rich_edit; global $wp_rich_edit, $pagenow;
if ( !isset($wp_rich_edit) ) if ( !isset($wp_rich_edit) )
$wp_rich_edit = ( 'true' == get_user_option('rich_editing') && !preg_match('!opera[ /][2-8]|konqueror|safari!i', $_SERVER['HTTP_USER_AGENT']) && rich_edit_exists() ) ? true : false; $wp_rich_edit = ( 'true' == get_user_option('rich_editing') && !preg_match('!opera[ /][2-8]|konqueror|safari!i', $_SERVER['HTTP_USER_AGENT']) && 'comment.php' != $pagenow && rich_edit_exists() ) ? true : false;
return apply_filters('user_can_richedit', $wp_rich_edit); return apply_filters('user_can_richedit', $wp_rich_edit);
} }