[Phplib-commit] CVS: php-lib/php/auth auth.inc,1.1,1.2 auth4.inc,1.1,1.2
Brought to you by:
nhruby,
richardarcher
From: Richard A. <ric...@us...> - 2001-08-12 04:58:39
|
Update of /cvsroot/phplib/php-lib/php/auth In directory usw-pr-cvs1:/tmp/cvs-serv4113/auth Modified Files: auth.inc auth4.inc Log Message: fix a few undefined variable access warnings Track changes to session from -stable tree Index: auth.inc =================================================================== RCS file: /cvsroot/phplib/php-lib/php/auth/auth.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** auth.inc 2000/04/13 13:06:55 1.1 --- auth.inc 2001/08/12 04:58:36 1.2 *************** *** 244,247 **** --- 244,249 ---- function is_authenticated() { if ( + isset($this->auth["uid"]) + && $this->auth["uid"] && Index: auth4.inc =================================================================== RCS file: /cvsroot/phplib/php-lib/php/auth/auth4.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** auth4.inc 2001/06/05 13:08:55 1.1 --- auth4.inc 2001/08/12 04:58:36 1.2 *************** *** 227,230 **** --- 227,232 ---- function is_authenticated() { if ( + isset($this->auth["uid"]) + && $this->auth["uid"] && |