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>2010-07-31 07:47:23 +0400
committerrobocoder <anthon.pang@gmail.com>2010-07-31 07:47:23 +0400
commite192d0b2ffaac97e75c7348102aea663ac250528 (patch)
tree288d3457f830b5acb7d6d06856b4992df7525a1b /libs/Zend/Db/Adapter/Oracle.php
parentf75704a6e634d40f9bfb69b9339274366fb34ca1 (diff)
fixes #1539 - on second thought, I'll copy Uri.php and Http/Client.php, and comment out the offending code
git-svn-id: http://dev.piwik.org/svn/trunk@2833 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'libs/Zend/Db/Adapter/Oracle.php')
-rw-r--r--libs/Zend/Db/Adapter/Oracle.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/Zend/Db/Adapter/Oracle.php b/libs/Zend/Db/Adapter/Oracle.php
index 17fb8488f4..b803878a64 100644
--- a/libs/Zend/Db/Adapter/Oracle.php
+++ b/libs/Zend/Db/Adapter/Oracle.php
@@ -204,10 +204,10 @@ class Zend_Db_Adapter_Oracle extends Zend_Db_Adapter_Abstract
{
$this->_connect();
$stmtClass = $this->_defaultStmtClass;
- // if (!class_exists($stmtClass)) {
+ if (!class_exists($stmtClass)) {
// require_once 'Zend/Loader.php';
- // Zend_Loader::loadClass($stmtClass);
- // }
+ Zend_Loader::loadClass($stmtClass);
+ }
$stmt = new $stmtClass($this, $sql);
if ($stmt instanceof Zend_Db_Statement_Oracle) {
$stmt->setLobAsString($this->getLobAsString());