Changeset 15484
- Timestamp:
- 08/02/2010 03:36:57 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-header.php
r15481 r15484 173 173 screen_meta($current_screen); 174 174 175 if ( is_multisite() ) { 176 if ( is_network_admin() ) 177 do_action('network_admin_notices'); 178 else 179 do_action('site_admin_notices'); 180 } else { 181 do_action('network_admin_notices'); 182 do_action('site_admin_notices'); 183 } 184 175 185 do_action('admin_notices'); 176 186 -
trunk/wp-admin/includes/ms.php
r15381 r15484 732 732 return false; 733 733 if ( get_site_option( 'wpmu_upgrade_site' ) != $wp_db_version ) 734 echo "<div class='update-nag'>" . sprintf( __( 'Thank you for Updating! Please visit the <a href="%s">Update Network</a> page to update all your sites.' ), esc_url( admin_url( 'ms-upgrade-network.php' ) ) ) . "</div>";734 echo "<div class='update-nag'>" . sprintf( __( 'Thank you for Updating! Please visit the <a href="%s">Update Network</a> page to update all your sites.' ), esc_url( network_admin_url( 'upgrade.php' ) ) ) . "</div>"; 735 735 } 736 736 add_action( 'admin_notices', 'site_admin_notice' ); -
trunk/wp-admin/network/upgrade.php
r15481 r15484 63 63 } 64 64 echo "</ul>"; 65 ?><p><?php _e( 'If your browser doesn’t start loading the next page automatically, click this link:' ); ?> <a class="button" href=" ms-upgrade-network.php?action=upgrade&n=<?php echo ($n + 5) ?>"><?php _e("Next Sites"); ?></a></p>65 ?><p><?php _e( 'If your browser doesn’t start loading the next page automatically, click this link:' ); ?> <a class="button" href="upgrade.php?action=upgrade&n=<?php echo ($n + 5) ?>"><?php _e("Next Sites"); ?></a></p> 66 66 <script type='text/javascript'> 67 67 <!--
Note: See TracChangeset
for help on using the changeset viewer.