Don't richedit for comments. Props Joseph Scott. fixes #4587 for 2.3

git-svn-id: https://develop.svn.wordpress.org/trunk@5780 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-07-05 20:11:32 +00:00
parent 0ccba3e8bb
commit 538cbd0046
1 changed files with 2 additions and 1 deletions

View File

@ -821,7 +821,8 @@ function user_can_richedit() {
if ( !isset( $wp_rich_edit) ) {
if ( get_user_option( 'rich_editing' ) == 'true' &&
( ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval($match[1]) >= 420 ) ||
!preg_match( '!opera[ /][2-8]|konqueror|safari!i', $_SERVER['HTTP_USER_AGENT'] ) ) ) {
!preg_match( '!opera[ /][2-8]|konqueror|safari!i', $_SERVER['HTTP_USER_AGENT'] ) )
&& 'comment.php' != $pagenow ) {
$wp_rich_edit = true;
} else {
$wp_rich_edit = false;