Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobocoder <anthon.pang@gmail.com>2011-05-07 23:57:30 +0400
committerrobocoder <anthon.pang@gmail.com>2011-05-07 23:57:30 +0400
commit6a9b7c04ac3edd54214f6728ed06bdd94e5edbd4 (patch)
tree5b7033aae3056ef96898ea7fb2a9efa7a6e6f9b1 /libs/Zend/Db/Statement/Oracle.php
parentc16d36676f78ae7d0a8c23ce22d7501884de53ae (diff)
fixes #2412
git-svn-id: http://dev.piwik.org/svn/trunk@4657 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'libs/Zend/Db/Statement/Oracle.php')
-rw-r--r--libs/Zend/Db/Statement/Oracle.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/Zend/Db/Statement/Oracle.php b/libs/Zend/Db/Statement/Oracle.php
index 3e9dde7d4e..0d267b0599 100644
--- a/libs/Zend/Db/Statement/Oracle.php
+++ b/libs/Zend/Db/Statement/Oracle.php
@@ -17,7 +17,7 @@
* @subpackage Statement
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id: Oracle.php 23775 2011-03-01 17:25:24Z ralph $
+ * @version $Id: Oracle.php 23959 2011-05-03 10:45:47Z yoshida@zend.co.jp $
*/
/**
@@ -87,7 +87,7 @@ class Zend_Db_Statement_Oracle extends Zend_Db_Statement
protected function _prepare($sql)
{
$connection = $this->_adapter->getConnection();
- $this->_stmt = oci_parse($connection, $sql);
+ $this->_stmt = @oci_parse($connection, $sql);
if (!$this->_stmt) {
/**
* @see Zend_Db_Statement_Oracle_Exception