diff --git src/wp-admin/admin.php b/admin.php
index a3dab04..57b3739 100755
old
|
new
|
if ( isset( $plugin_page ) ) { |
243 | 243 | } |
244 | 244 | |
245 | 245 | if ( ! ( file_exists( WP_PLUGIN_DIR . "/$plugin_page" ) && is_file( WP_PLUGIN_DIR . "/$plugin_page" ) ) && ! ( file_exists( WPMU_PLUGIN_DIR . "/$plugin_page" ) && is_file( WPMU_PLUGIN_DIR . "/$plugin_page" ) ) ) { |
| 246 | /* translators: %s: Admin page generated by the plugin. */ |
246 | 247 | wp_die( sprintf( __( 'Cannot load %s.' ), htmlentities( $plugin_page ) ) ); |
247 | 248 | } |
248 | 249 | |