Update of /cvsroot/phpwiki/phpwiki/lib/pear/DB
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15404/pear/DB
Modified Files:
sqlite.php
Log Message:
ignore forbidden ini_set warnings. Bug #1117254 by Xavier Roche
Index: sqlite.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/pear/DB/sqlite.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -2 -b -p -d -r1.4 -r1.5
--- sqlite.php 21 Jun 2004 08:39:38 -0000 1.4
+++ sqlite.php 28 Feb 2005 21:24:33 -0000 1.5
@@ -186,5 +186,5 @@ class DB_sqlite extends DB_common
$this->last_query = $query;
$query = $this->_modifyQuery($query);
- ini_set('track_errors', true);
+ @ini_set('track_errors', true);
$result = @sqlite_query($query, $this->connection);
ini_restore('track_errors');
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
|
|