|
From: Benjamin C. <bc...@us...> - 2002-03-13 18:08:03
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv18994
Modified Files:
install.php
Log Message:
Turn off runtime quotes
Index: install.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/install.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- install.php 13 Mar 2002 16:34:50 -0000 1.13
+++ install.php 13 Mar 2002 17:40:18 -0000 1.14
@@ -31,6 +31,8 @@
$_gv =& $HTTP_GET_VARS;
$_pv =& $HTTP_POST_VARS;
+ini_set("magic_quotes_runtime", 0); // runtime quotes will kill the included sql
+
if (!empty($_pv)) {
$tables = array(
'/^#.*/' => '',
|