Changeset 56601
- Timestamp:
- 09/17/2023 07:10:58 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/themes.php
r56515 r56601 136 136 <?php if ( 1 === $themes_to_delete ) : ?> 137 137 <h1><?php _e( 'Delete Theme' ); ?></h1> 138 <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'This theme may be active on other sites in the network.' ); ?></p></div> 138 <?php 139 wp_admin_notice( 140 '<strong>' . __( 'Caution:' ) . '</strong> ' . __( 'This theme may be active on other sites in the network.' ), 141 array( 142 'additional_classes' => array( 'error' ), 143 ) 144 ); 145 ?> 139 146 <p><?php _e( 'You are about to remove the following theme:' ); ?></p> 140 147 <?php else : ?> 141 148 <h1><?php _e( 'Delete Themes' ); ?></h1> 142 <div class="error"><p><strong><?php _e( 'Caution:' ); ?></strong> <?php _e( 'These themes may be active on other sites in the network.' ); ?></p></div> 149 <?php 150 wp_admin_notice( 151 '<strong>' . __( 'Caution:' ) . '</strong> ' . __( 'These themes may be active on other sites in the network.' ), 152 array( 153 'additional_classes' => array( 'error' ), 154 ) 155 ); 156 ?> 143 157 <p><?php _e( 'You are about to remove the following themes:' ); ?></p> 144 158 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.