Changeset 23509 for trunk/wp-admin/includes/ajax-actions.php
- Timestamp:
- 02/28/2013 04:48:33 PM (12 years ago)
- File:
-
- 1 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 );
Note: See TracChangeset
for help on using the changeset viewer.