|
From: Benjamin C. <bc...@us...> - 2002-04-11 22:15:22
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv12501
Modified Files:
install.php
Log Message:
Try to fix bug 529344 - slashes getting inserted on db creation
Index: install.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/install.php,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- install.php 11 Apr 2002 21:58:06 -0000 1.26
+++ install.php 11 Apr 2002 22:15:17 -0000 1.27
@@ -183,7 +183,7 @@
if ($_pv['db_type'] == 'oci8' ) {
$do_query = substr($do_query, 0, -1);
}
- $db->query($do_query);
+ $db->query(stripslashes($do_query));
$do_query = '';
}
}
|