|
From: Jon O. <jon...@us...> - 2006-06-18 10:46:10
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv26131 Modified Files: common.php Log Message: update for phpBB 2.0.21 Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** common.php 17 Jun 2006 20:09:06 -0000 1.54 --- common.php 18 Jun 2006 10:46:01 -0000 1.55 *************** *** 91,98 **** while (list($var,) = @each($input)) { ! if (!in_array($var, $not_unset)) { ! unset($$var); } } --- 91,99 ---- while (list($var,) = @each($input)) { ! if (in_array($var, $not_unset)) { ! die('Hacking attempt!'); } + unset($$var); } |