|
From: Jon O. <jon...@us...> - 2006-09-14 20:08:20
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv27026/install Modified Files: mx_install.php Log Message: A couple of install bugs... Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** mx_install.php 14 Sep 2006 18:01:15 -0000 1.71 --- mx_install.php 14 Sep 2006 20:08:15 -0000 1.72 *************** *** 133,140 **** while (list($var,) = @each($input)) { ! if (!in_array($var, $not_unset)) { ! unset($$var); } } --- 133,141 ---- while (list($var,) = @each($input)) { ! if (in_array($var, $not_unset)) { ! die('Hacking attempt!'); } + unset($$var); } |