Ticket #1476: 1476-pishmishy.patch
File 1476-pishmishy.patch, 1.8 KB (added by , 18 years ago) |
---|
-
wp-admin/wp-admin.css
879 879 color: #fff; 880 880 } 881 881 882 #wpurg { 883 background: #cc0000; 884 padding: .8em 19em .8em 2em; 885 color: #ffffff; 886 font-family: Georgia, "Times New Roman", Times, serif; 887 text-align: center; 888 } 889 882 890 #wphead { 883 891 background: #14568a; 884 892 padding: .8em 19em .8em 2em; -
wp-admin/includes/upgrade.php
196 196 197 197 $wp_rewrite->flush_rules(); 198 198 199 update_option('wp_version_notified',''); 200 update_option('wp_version_check_results',''); 201 update_option('wp_version_check_time',''); 202 199 203 update_option('db_version', $wp_db_version); 200 204 } 201 205 -
wp-admin/admin-header.php
1 1 <?php 2 3 include("includes/updates.php"); 4 2 5 @header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset')); 3 6 if (!isset($_GET["page"])) require_once('admin.php'); 4 7 if ( $editing ) { … … 46 49 <div id="wphead"> 47 50 <h1><?php bloginfo('name'); ?> <span>(<a href="<?php echo get_option('home') . '/'; ?>"><?php _e('View site »') ?></a>)</span></h1> 48 51 </div> 52 <?php if(is_admin()) latest_version(); ?> 49 53 <div id="user_info"><p><?php printf(__('Howdy, <strong>%s</strong>.'), $user_identity) ?> [<a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>"><?php _e('Sign Out'); ?></a>, <a href="profile.php"><?php _e('My Profile'); ?></a>] </p></div> 50 54 51 55 <?php