Changeset 45926 for trunk/src/wp-admin/update.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/update.php
r45611 r45926 125 125 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 126 126 127 /* translators: %s: plugin name and version */ 127 128 $title = sprintf( __( 'Installing Plugin: %s' ), $api->name . ' ' . $api->version ); 128 129 $nonce = 'install-plugin_' . $plugin; … … 154 155 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 155 156 157 /* translators: %s: file name */ 156 158 $title = sprintf( __( 'Installing Plugin from uploaded file: %s' ), esc_html( basename( $file_upload->filename ) ) ); 157 159 $nonce = 'plugin-upload'; … … 246 248 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 247 249 250 /* translators: %s: theme name and version */ 248 251 $title = sprintf( __( 'Installing Theme: %s' ), $api->name . ' ' . $api->version ); 249 252 $nonce = 'install-theme_' . $theme; … … 272 275 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 273 276 277 /* translators: %s: file name */ 274 278 $title = sprintf( __( 'Installing Theme from uploaded file: %s' ), esc_html( basename( $file_upload->filename ) ) ); 275 279 $nonce = 'theme-upload';
Note: See TracChangeset
for help on using the changeset viewer.