Changeset 14039
- Timestamp:
- 04/08/2010 03:36:52 AM (14 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r14026 r14039 3236 3236 foreach ( $settings_errors as $key => $details ) { 3237 3237 $css_id = 'setting-error-' . $details['code']; 3238 $css_class = $details['type'] . ' fadesettings-error';3238 $css_class = $details['type'] . ' settings-error'; 3239 3239 $output .= "<div id='$css_id' class='$css_class'> \n"; 3240 3240 $output .= "<p><strong>{$details['message']}</strong></p>"; -
trunk/wp-admin/ms-options.php
r13998 r14039 23 23 if (isset($_GET['updated'])) { 24 24 ?> 25 <div id="message" class="updated fade"><p><?php _e( 'Options saved.' ) ?></p></div>25 <div id="message" class="updated"><p><?php _e( 'Options saved.' ) ?></p></div> 26 26 <?php 27 27 } -
trunk/wp-admin/ms-sites.php
r14022 r14039 27 27 if ( isset( $_GET['updated'] ) && $_GET['updated'] == 'true' && ! empty( $_GET['action'] ) ) { 28 28 ?> 29 <div id="message" class="updated fade"><p>29 <div id="message" class="updated"><p> 30 30 <?php 31 31 switch ( $_GET['action'] ) { -
trunk/wp-admin/ms-themes.php
r13998 r14039 19 19 if ( isset( $_GET['updated'] ) ) { 20 20 ?> 21 <div id="message" class="updated fade"><p><?php _e( 'Site themes saved.' ) ?></p></div>21 <div id="message" class="updated"><p><?php _e( 'Site themes saved.' ) ?></p></div> 22 22 <?php 23 23 } -
trunk/wp-admin/ms-users.php
r13998 r14039 25 25 if ( isset( $_GET['updated'] ) && $_GET['updated'] == 'true' && ! empty( $_GET['action'] ) ) { 26 26 ?> 27 <div id="message" class="updated fade"><p>27 <div id="message" class="updated"><p> 28 28 <?php 29 29 switch ( $_GET['action'] ) { -
trunk/wp-admin/my-sites.php
r13998 r14039 41 41 42 42 if ( $updated ) { ?> 43 <div id="message" class="updated fade"><p><strong><?php _e( 'Settings saved.' ); ?></strong></p></div>43 <div id="message" class="updated"><p><strong><?php _e( 'Settings saved.' ); ?></strong></p></div> 44 44 <?php } ?> 45 45 -
trunk/wp-admin/themes.php
r14001 r14039 45 45 require_once('admin-header.php'); 46 46 if ( is_multisite() && current_user_can('edit_themes') ) { 47 ?><div id="message0" class="updated fade"><p><?php _e('Administrator: new themes must be activated in the <a href="ms-themes.php">Themes Admin</a> page before they appear here.'); ?></p></div><?php47 ?><div id="message0" class="updated"><p><?php _e('Administrator: new themes must be activated in the <a href="ms-themes.php">Themes Admin</a> page before they appear here.'); ?></p></div><?php 48 48 } 49 49 ?> -
trunk/wp-admin/user-new.php
r13546 r14039 114 114 switch ( $_GET[ 'update' ] ) { 115 115 case "newuserconfimation": 116 $messages[] = '<div id="message" class="updated fade"><p>' . __('Invitation email sent to new user. A confirmation link must be clicked before their account is created.') . '</p></div>';116 $messages[] = '<div id="message" class="updated"><p>' . __('Invitation email sent to new user. A confirmation link must be clicked before their account is created.') . '</p></div>'; 117 117 break; 118 118 case "add": 119 $messages[] = '<div id="message" class="updated fade"><p>' . __('Invitation email sent to user. A confirmation link must be clicked for them to be added to your blog.') . '</p></div>';119 $messages[] = '<div id="message" class="updated"><p>' . __('Invitation email sent to user. A confirmation link must be clicked for them to be added to your blog.') . '</p></div>'; 120 120 break; 121 121 case "addnoconfirmation": 122 $messages[] = '<div id="message" class="updated fade"><p>' . __('User has been added to your blog.') . '</p></div>';122 $messages[] = '<div id="message" class="updated"><p>' . __('User has been added to your blog.') . '</p></div>'; 123 123 break; 124 124 case "addexisting": 125 $messages[] = '<div id="message" class="updated fade"><p>' . __('That user is already a member of this blog.') . '</p></div>';125 $messages[] = '<div id="message" class="updated"><p>' . __('That user is already a member of this blog.') . '</p></div>'; 126 126 break; 127 127 }
Note: See TracChangeset
for help on using the changeset viewer.