[Phpbb-php5mod-cvs-checkins] phpbb-php5 common.php,1.6,1.7
Brought to you by:
jelly_doughnut
From: Josh <jel...@us...> - 2005-10-31 21:03:35
|
Update of /cvsroot/phpbb-php5mod/phpbb-php5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26724 Modified Files: common.php Log Message: Additions from phpBB Group Some fixes from me Index: common.php =================================================================== RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/common.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** common.php 31 Oct 2005 03:18:41 -0000 1.6 --- common.php 31 Oct 2005 21:03:26 -0000 1.7 *************** *** 37,41 **** //// for compatibility with MODifications written for php3 & 4 //// end phpBB-php5 developer note ! if (@phpversion() >= '5.0.0' && (!ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { $HTTP_POST_VARS = $_POST; --- 37,41 ---- //// for compatibility with MODifications written for php3 & 4 //// end phpBB-php5 developer note ! if (@phpversion() >= '5.0.0' && (!@ini_get('register_long_arrays') || @ini_get('register_long_arrays') == '0' || strtolower(@ini_get('register_long_arrays')) == 'off')) { $HTTP_POST_VARS = $_POST; |