[Bug 599] Changed - Parse error in phplib/session.inc in function thaw
bugs@bugs.horde.org
bugs@bugs.horde.org
Fri, 9 Feb 2001 12:46:06 -0400
http://bugs.horde.org/show_bug.cgi?id=599
*** shadow/599 Fri Feb 9 04:10:33 2001
--- shadow/599.tmp.18605 Fri Feb 9 12:46:06 2001
***************
*** 71,73 ****
--- 71,98 ----
Next time when some user reports seeing the errormessage I'll try to add
debugging messages to $vals as suggested.
+
+ ------- Additional Comments From petronio@ifeva.edu.ar 02/09/01 12:46 -------
+ Maybe this can help...
+
+ When I add the folowing line in session.inc line 343
+
+ "print $vals";
+
+ just before the one which case this:
+
+ "Parse error: parse error, expecting `STRING' or `'$'' in session.inc on line
+ 344"
+
+ I get this:
+
+ "$this->in = ''; $this->pt = array(); $this->pt['imp'] = '1'; $this->pt['s'] =
+ '1'; $GLOBALS['imp'] = new ; $GLOBALS['s'] = '1';
+ Parse error: parse error, expecting `STRING' or `'$'' in session.inc on line
+ 344"
+
+ I make this change:
+ - eval(sprintf(";%s",$vals));
+ + eval(sprintf("%s;",$vals));
+
+ but stell happens...