[Phplib-commit] CVS: php-lib/php page.inc,1.10,1.11
Brought to you by:
nhruby,
richardarcher
From: Richard A. <ric...@us...> - 2001-08-18 09:48:33
|
Update of /cvsroot/phplib/php-lib/php In directory usw-pr-cvs1:/tmp/cvs-serv25373 Modified Files: page.inc Log Message: sync with -stable test $sess->in as a boolean rather than testing against a string. Index: page.inc =================================================================== RCS file: /cvsroot/phplib/php-lib/php/page.inc,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** page.inc 2000/12/05 11:15:32 1.10 --- page.inc 2001/08/18 09:48:30 1.11 *************** *** 55,59 **** ## Load the auto_init-File, if one is specified. ! if (($sess->auto_init != "") && ($sess->in == "")) { $sess->in = 1; include($_PHPLIB["libdir"] . $sess->auto_init); --- 55,59 ---- ## Load the auto_init-File, if one is specified. ! if (($sess->auto_init != "") && !$sess->in) { $sess->in = 1; include($_PHPLIB["libdir"] . $sess->auto_init); |