Date: 10/26/99
- Next message: Kristian Koehntopp: "[PHPLIB-DEV] session.inc and special characters in strings"
- Previous message: Kristian Köhntopp: "Re: [PHPLIB-DEV] oohforms bad escape sequence"
- Next in thread: kk: "[PHPLIB-DEV] cvs commit"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: kk
Date: Tue Oct 26 13:00:09 1999
Modified files:
php-lib/php/session.inc
Log message:
- Handle array case just as the case below. I hope we
finally handle this as we should.
Index: php-lib/php/session.inc
diff -u php-lib/php/session.inc:1.45 php-lib/php/session.inc:1.46
--- php-lib/php/session.inc:1.45 Sun Oct 24 14:15:21 1999
+++ php-lib/php/session.inc Tue Oct 26 12:59:38 1999
@@ -5,7 +5,7 @@
* Copyright (c) 1998,1999 SH Online Dienst GmbH
* Boris Erdmann, Kristian Koehntopp
*
- * $Id: session.inc,v 1.45 1999/10/24 12:15:21 kk Exp $
+ * $Id: session.inc,v 1.46 1999/10/26 10:59:38 kk Exp $
*
*/
@@ -262,7 +262,7 @@
$str .= "\$$prefix = array(); ";
while ( "array" == $l ) {
## Structural recursion
- $this->serialize($prefix."['".ereg_replace("([\\\'])", "\\\\1", $k)."']", &$str);
+ $this->serialize($prefix."['".ereg_replace("([\\\\'])", "\\\\1", $k)."']", &$str);
eval("\$l = gettype(list(\$k)=each(\$$prefix));");
}
-
PHPLIB Developers Mailing List. Send messages to <phplib-dev <email protected>>.
To unsubscribe, send "unsubscribe" to <phplib-dev-request <email protected>> in
the body, not the subject, of your message.
- Next message: Kristian Koehntopp: "[PHPLIB-DEV] session.inc and special characters in strings"
- Previous message: Kristian Köhntopp: "Re: [PHPLIB-DEV] oohforms bad escape sequence"
- Next in thread: kk: "[PHPLIB-DEV] cvs commit"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

