Changeset 23509
- Timestamp:
- 02/28/2013 04:48:33 PM (12 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/ajax-actions.php
r23508 r23509 2140 2140 $compareto = isset( $_GET['compareto'] ) ? absint( $_GET['compareto'] ) : 0; 2141 2141 $showautosaves = isset( $_GET['showautosaves'] ) ? $_GET['showautosaves'] : ''; 2142 $show _split_view = isset( $_GET['show_split_view'] ) ? $_GET['show_split_view'] : '';2142 $showsplitview = isset( $_GET['showsplitview'] ) ? $_GET['showsplitview'] : ''; 2143 2143 $postid = isset( $_GET['post_id'] ) ? absint( $_GET['post_id'] ) : ''; 2144 2144 … … 2237 2237 $args = array(); 2238 2238 2239 if ( 'true' == $show _split_view )2240 $args = array( 'show _split_view' => 'true' );2239 if ( 'true' == $showsplitview ) 2240 $args = array( 'showsplitview' => 'true' ); 2241 2241 2242 2242 $content .= wp_text_diff( $left_content, $right_content, $args ); -
trunk/wp-admin/js/revisions.js
r23508 r23509 175 175 176 176 /* 177 * initialize the revision appl ;ication177 * initialize the revision application 178 178 */ 179 179 initialize : function( options ) {
Note: See TracChangeset
for help on using the changeset viewer.