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
path: root/libs/Zend
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-09-06 07:22:22 +0400
committermattab <matthieu.aubry@gmail.com>2013-09-06 07:22:22 +0400
commita07631b3205889451124192f04aaf81fd447236e (patch)
tree69a77d212b79fbfea84db64fdbbc55394d5210d3 /libs/Zend
parent0a88a60905a4e0b22ed9f5168b6edc9dafeb23cf (diff)
Fix Tracker variable was not set properly
Diffstat (limited to 'libs/Zend')
-rw-r--r--libs/Zend/Registry.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/Zend/Registry.php b/libs/Zend/Registry.php
index 0bf2827e65..622f21ccd2 100644
--- a/libs/Zend/Registry.php
+++ b/libs/Zend/Registry.php
@@ -144,7 +144,8 @@ class Zend_Registry extends ArrayObject
if (!$instance->offsetExists($index)) {
// require_once 'Zend/Exception.php';
- throw new Zend_Exception("No entry is registered for key '$index'");
+// debug_print_backtrace();
+ throw new Zend_Exception("No entry is registered for key '$index'" );
}
return $instance->offsetGet($index);