Hi.
In db_read_dump you can enter a sql-Query. If you give something like
select * from bla where blo>'bla'
then it says something like syntax error:
select * from bla where blo>\'bla\'
changing the line 29 in db_read_dump from
$sql_query = trim($sql_query);
to
$sql_query = trim(stripslashes($sql_query));
solves the Problem.
Just a quickie!
Thanks
Tex
Logged In: YES
user_id=144058
Hi Tex!
OK, I'll have a look at this. But I have to ensure the
patch you suggest doesn't "create" a new bug with special
characters in sql queries.
Regards,
Loc
Logged In: YES
user_id=172248
i just installed the latest stable and this is the only bug
i have found.
Logged In: YES
user_id=144058
Fixed in both the CVS trees thanks to Pete.