
 Can Ince - 2005-05-10 03:57:10
A quite good and useful project. Thanks to the author.
Problem: in a case where you have a semi-colon inside the queries
(e.g. "aaaaa","bbbb","cc;dd") the code (mysql_backup.class.php) explodes the query from the semi-colon(;) returning an unwanted result, as we have a line (line 262) there:
//----code begins here----
$SQL = explode(";", $this->_Open($this->output));
//----end of the code----
Fix: As we need to explode the string where we have got a semi-colon, and a new line:
//----code begins here----
$SQL = explode(";\r", $this->_Open($this->output));
//----end of the code----
will fix the problem.