|
From: Benjamin C. <bc...@us...> - 2002-10-18 17:48:40
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv15850
Modified Files:
include.php install.php
Log Message:
Fixes bug #617900 - Turn off magic_quotes_sybase.
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- include.php 11 Oct 2002 20:53:53 -0000 1.124
+++ include.php 18 Oct 2002 17:48:34 -0000 1.125
@@ -23,6 +23,7 @@
// $Id$
ini_set("magic_quotes_runtime", 0);
+ini_set("magic_quotes_sybase", 0);
if (!@include('config.php')) {
header("Location: install.php");
Index: install.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/install.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- install.php 11 Oct 2002 20:53:53 -0000 1.34
+++ install.php 18 Oct 2002 17:48:35 -0000 1.35
@@ -59,6 +59,7 @@
'pgsql' => 'PostgreSQL');
ini_set("magic_quotes_runtime", 0); // runtime quotes will kill the included sql
+ini_set("magic_quotes_sybase", 0);
if (!empty($_pv)) {
$tables = array(
|