Make WordPress Core

Ticket #12919: 12919.2.patch

File 12919.2.patch, 3.4 KB (added by ocean90, 15 years ago)
  • wp-admin/includes/class-wp-upgrader.php

     
    10551055        function add_strings() {
    10561056                $this->upgrader->strings['skin_update_failed_error'] = __('An error occured while updating %1$s: <strong>%2$s</strong>.');
    10571057                $this->upgrader->strings['skin_update_failed'] = __('The update of %1$s failed.');
    1058                 $this->upgrader->strings['skin_update_successful'] = __('%1$s updated successfully. <a onclick="%2$s" href="#">See Details</a>.');
     1058                $this->upgrader->strings['skin_update_successful'] = __('%1$s updated successfully. <a onclick="%2$s" href="#" class="hide-if-no-js"><span>Show Details</span><span class="hidden">Hide Details</span>.</a>');
    10591059        }
    10601060
    10611061        function feedback($string) {
     
    11011101        function before($title = '') {
    11021102                $this->in_loop = true;
    11031103                printf( '<h4>' . $this->upgrader->strings['skin_before_update_header'] . '</h4>',  $title, $this->upgrader->update_current, $this->upgrader->update_count);
    1104                 echo '<div class="update-messages" style="display:none" id="progress-' . esc_attr($this->upgrader->update_current) . '"><p>';
     1104                echo '<div class="update-messages hide-if-js" id="progress-' . esc_attr($this->upgrader->update_current) . '"><p>';
    11051105                $this->flush_output();
    11061106        }
    11071107
     
    11161116                        echo '<script type="text/javascript">jQuery(\'#progress-' . esc_js($this->upgrader->update_current) . '\').show();</script>';
    11171117                }
    11181118                if ( !empty($this->result) && !is_wp_error($this->result) ) {
    1119                         echo '<div class="updated"><p>' . sprintf($this->upgrader->strings['skin_update_successful'], $title, 'jQuery(\'#progress-' . esc_js($this->upgrader->update_current) . '\').toggle(); return false;') . '</p></div>';
     1119                        echo '<div class="updated"><p>' . sprintf($this->upgrader->strings['skin_update_successful'], $title, 'jQuery(\'#progress-' . esc_js($this->upgrader->update_current) . '\').toggle();jQuery(\'span\', this).toggle(); return false;') . '</p></div>';
    11201120                }
    11211121                $this->reset();
    11221122                $this->flush_output();
  • wp-admin/includes/template.php

     
    34643464 *
    34653465 */
    34663466function iframe_header( $title = '', $limit_styles = false ) {
     3467global $hook_suffix;
    34673468?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    34683469<html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
    34693470<head>
     
    34853486do_action('admin_print_styles');
    34863487do_action('admin_print_scripts');
    34873488do_action('admin_head');
     3489
     3490$admin_body_class = preg_replace('/[^a-z0-9_-]+/i', '-', $hook_suffix);
     3491if ( get_user_setting('mfold') == 'f' )
     3492        $admin_body_class .= ' folded';
    34883493?>
    34893494</head>
    3490 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?>>
     3495<body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?>  class="wp-admin no-js<?php echo apply_filters( 'admin_body_class', '' ) . " $admin_body_class"; ?>">
     3496<script type="text/javascript">
     3497//<![CDATA[
     3498(function(){
     3499var c = document.body.className;
     3500c = c.replace(/no-js/, 'js');
     3501document.body.className = c;
     3502})();
     3503//]]>
     3504</script>
    34913505<?php
    34923506}
    34933507