[phplib-commit] CVS: php-lib-stable CHANGES,1.35,1.36
Brought to you by:
nhruby,
richardarcher
From: Layne W. <lay...@us...> - 2007-01-12 21:47:32
|
Update of /cvsroot/phplib/php-lib-stable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4474 Modified Files: CHANGES Log Message: prefer auto-globals (i.e. $_GET instead of $HTTP_GET_VARS) allow for "register_long_arrays" INI setting in PHP5 to be turned off as this disables the longer arrays Index: CHANGES =================================================================== RCS file: /cvsroot/phplib/php-lib-stable/CHANGES,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** CHANGES 23 Feb 2006 10:30:07 -0000 1.35 --- CHANGES 12 Jan 2007 21:47:27 -0000 1.36 *************** *** 1,4 **** --- 1,32 ---- $Id$ + 12-Jan-2007 layne_weathers + - db_mysql.inc, db_odbc.inc - added disconnect() function for closing + connections (useful/necessary when using non-persistent connections) + - db_oci8.inc - clear $this->Link_ID on disconnect(), prevent assuming + the connection was dropped + - prefer auto-globals (i.e. $_GET instead of $HTTP_GET_VARS), allow for + "register_long_arrays" INI setting in PHP5 to be turned off, this disables + the longer arrays + - affected files: + pages/defauth.php3 + pages/admin/new_user.php3 + pages/admin/new_user_alt.php3 + pages/admin/new_user_md5.php3 + php/auth.inc + php/auth4.inc + php/crcloginform.ihtml + php/crloginform.ihtml + php/layout_html.inc + php/local.inc + php/local4.inc + php/loginform.ihtml + php/menu.inc + php/oohforms.inc + php/session.inc + php/session4.inc + php/setup.inc + php/tpl_form.inc + 23-Feb-2006 richardarcher - security fix to prevent possible remote code execution. |