uploads.php and upgrade.php modified
-
I had this 2 error that I report below, what should I do?
Filename: wp-admin/includes/upgrade.php
File Type: Core
Details: This WordPress core file has been modified and differs from the original file distributed with this version of WordPress.Original:
if ( is_wp_error( $result ) )
die( $result->get_error_message() );Modified:
if ( is_wp_error( $result ) ) {
echo $result->get_error_message();
exit(1);
}Filename: wp-includes/load.php
File Type: Core
Details: This WordPress core file has been modified and differs from the original file distributed with this version of WordPress.Orginal:
Modified:
// add by APS – display error on
438 if(defined(‘APSCONFIGURE’)){
439 throw new Exception(
440 /* translators: 1: $table_prefix 2: wp-config.php */
441 sprintf( __( ‘ERROR: %1$s in %2$s can only contain numbers, letters, and underscores.’ ),
442 ‘$table_prefix‘,
443 ‘wp-config.php‘
444 )
445 );
446 }
- The topic ‘uploads.php and upgrade.php modified’ is closed to new replies.