Catchable fatal error
-
Hey All, I had gotten this error while attempting to change my password through the ‘myprofile’ section in the admin panel:
Catchable fatal error: Object of class __PHP_Incomplete_Class could not be converted to string in /home/user/public_html/domain name/wp-includes/functions.php on line 1463
lines 159-167 read:
foreach ( (array) $array as $k => $v ) {
if ( is_array( $v ) ) {
$array[$k] = add_magic_quotes( $v );
} else {
/**1463*/ $array[$k] = addslashes( $v );
}
}
return $array;
}I had added the /**1463*/ to distinguish line 1463 from the rest.
I believe this is a wide-wordpress glitch as I have copied and pasted my other functions.php from another website (three websites actually).
Any help is appreciated!
- The topic ‘Catchable fatal error’ is closed to new replies.