Make WordPress Core


Ignore:
Timestamp:
12/04/2014 02:35:02 PM (10 years ago)
Author:
johnbillion
Message:

Correct the default value of the show_split_view argument for revisions so they are correctly displayed side by side ins
tead of inline.

Fixes #24908

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/revision.php

    r30695 r30739  
    7676
    7777        $args = array(
    78             'show_split_view' => false
     78            'show_split_view' => true
    7979        );
    8080
     
    8989         *     Associative array of options to pass to {@see wp_text_diff()}.
    9090         *
    91          *     @type bool $show_split_view False for split view (two columns), true for
    92          *                                 un-split view (single column). Default false.
     91         *     @type bool $show_split_view True for split view (two columns), false for
     92         *                                 un-split view (single column). Default true.
    9393         * }
    9494         * @param string  $field        The current revision field.
Note: See TracChangeset for help on using the changeset viewer.