tried to fix bug #469416 (Dumps with binary data dont work mysql)
This commit is contained in:
@@ -8,6 +8,8 @@ $Source$
|
|||||||
2001-10-13 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
2001-10-13 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
* Documentation.html, lines 504-506: added some words about requirement for
|
* Documentation.html, lines 504-506: added some words about requirement for
|
||||||
table sizes.
|
table sizes.
|
||||||
|
* libraries/build_dump.lib.php3, lines 202-203: tried to fix bug #469416
|
||||||
|
(Dumps with binary data dont work mysql).
|
||||||
|
|
||||||
2001-10-12 Marc Delisle <lem9@users.sourceforge.net>
|
2001-10-12 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* lang/bulgarian-win1251.inc.php3 updates, thanks to Peter Petrov.
|
* lang/bulgarian-win1251.inc.php3 updates, thanks to Peter Petrov.
|
||||||
|
@@ -199,8 +199,8 @@ if (!defined('__LIB_BUILD_DUMP__')){
|
|||||||
. ' VALUES (';
|
. ' VALUES (';
|
||||||
}
|
}
|
||||||
|
|
||||||
$search = array("\x0a","\x0d","\x1a"); //\x08\\x09, not required
|
$search = array("\x00", "\x0a", "\x0d", "\x1a"); //\x08\\x09, not required
|
||||||
$replace = array("\\n","\\r","\Z");
|
$replace = array("\\0", "\\n", "\\r", "\Z");
|
||||||
$isFirstRow = TRUE;
|
$isFirstRow = TRUE;
|
||||||
|
|
||||||
@set_time_limit(1200); // 20 Minutes
|
@set_time_limit(1200); // 20 Minutes
|
||||||
|
Reference in New Issue
Block a user