php error at line wordbooker.php on line 2741
-
2 (not all) of my blogs must have some old settings that cause line 2741 to throw an error:
Warning: mysql_real_escape_string() expects parameter 1 to be string, array given in /home/tomorrow/public_html/wp-content/plugins/wordbooker/wordbooker.php on line 2741
, '" .mysql_real_escape_string($error_msg) . "'
If you add a cast to it, it stops the error. But something else must be going on to make php think that $error_msg is an array
, '" . mysql_real_escape_string( (string ) $error_msg) . "'
- The topic ‘php error at line wordbooker.php on line 2741’ is closed to new replies.