Changeset 36985
- Timestamp:
- 03/14/2016 01:38:09 AM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r36825 r36985 1683 1683 $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name REGEXP '^[0-9]+_new_email$'" ); 1684 1684 } 1685 1686 // Remove unused user setting for wpLink. 1687 delete_user_setting( 'wplink' ); 1685 1688 } 1686 1689 -
trunk/src/wp-includes/class-wp-editor.php
r36761 r36985 1401 1401 */ 1402 1402 public static function wp_link_dialog() { 1403 $search_panel_visible = '1' == get_user_setting( 'wplink', '0' ) ? ' search-panel-visible' : '';1404 1405 1403 // display: none is required here, see #WP27605 1406 1404 ?> 1407 1405 <div id="wp-link-backdrop" style="display: none"></div> 1408 <div id="wp-link-wrap" class="wp-core-ui <?php echo $search_panel_visible; ?>" style="display: none">1406 <div id="wp-link-wrap" class="wp-core-ui" style="display: none"> 1409 1407 <form id="wp-link" tabindex="-1"> 1410 1408 <?php wp_nonce_field( 'internal-linking', '_ajax_linking_nonce', false ); ?> … … 1415 1413 <div id="link-selector"> 1416 1414 <div id="link-options"> 1417 <p class="howto"><?php _e( 'Enter the destination URL' ); ?></p>1418 1415 <div> 1419 1416 <label><span><?php _e( 'URL' ); ?></span> … … 1425 1422 </div> 1426 1423 <div class="link-target"> 1427 <label><span> </span><input type="checkbox" id="wp-link-target" /> <?php _e( 'Open link in a new tab' ); ?></label> 1424 <label><span> </span> 1425 <input type="checkbox" id="wp-link-target" /> <?php _e( 'Open link in a new tab' ); ?></label> 1428 1426 </div> 1429 1427 </div> -
trunk/src/wp-includes/css/editor.css
r36904 r36985 1470 1470 1471 1471 #wp-link label input[type="text"] { 1472 margin: 5px 0 0;1472 margin: 8px 0 0; 1473 1473 width: 70%; 1474 1474 }
Note: See TracChangeset
for help on using the changeset viewer.