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