WordPress core file modified: wp-includes/functions.php and upgrade.php
-
http://www.samanthabennett.com.au
Word fence found code change problem in wp-admin/includes/upgrade.php
Original
if ( is_wp_error( $result ) )
die( $result->get_error_message() );It was Modified to
if ( is_wp_error( $result ) ) {
echo $result->get_error_message();
exit(1);Also, problem on wp-includes/functions.php
Original code
</body>
<?php
die();
}Changed to
</body>
<?php
exit(1);
}Is this of concern?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘WordPress core file modified: wp-includes/functions.php and upgrade.php’ is closed to new replies.