Changeset 18519
- Timestamp:
- 08/07/2011 05:03:18 PM (13 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-editor.php
r18516 r18519 83 83 echo $set['editor_css'] . "\n"; 84 84 85 if ( $this->can_richedit|| $set['media_buttons'] ) {85 if ( !empty($buttons) || $set['media_buttons'] ) { 86 86 echo '<div id="wp-' . $editor_id . '-editor-tools" class="wp-editor-tools">'; 87 87 echo $buttons; … … 476 476 } 477 477 478 // reset($this->mce_settings);479 // $key = key($this->mce_settings);480 481 478 $ref = array( 482 479 'plugins' => implode( ',', $this->plugins ), -
trunk/wp-includes/general-template.php
r18498 r18519 1740 1740 ( ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval($match[1]) >= 420 ) || 1741 1741 !preg_match( '!opera[ /][2-8]|konqueror|safari!i', $_SERVER['HTTP_USER_AGENT'] ) ) 1742 && 'comment.php' != $pagenow) {1742 ) { 1743 1743 $wp_rich_edit = true; 1744 1744 } else {
Note: See TracChangeset
for help on using the changeset viewer.