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>2012-03-05 02:04:41 +0400
committerrobocoder <anthon.pang@gmail.com>2012-03-05 02:04:41 +0400
commit884e54cf378bffdea2dd5360af8a260b25352746 (patch)
tree83fe77732234c1c3e858501ab9ab200989732df1 /plugins/Feedback/Controller.php
parent775978937e1e393ba764968d5d41f261b488b8a8 (diff)
refs #1713 - merge dev branch to trunk (config class refactoring)
git-svn-id: http://dev.piwik.org/svn/trunk@5951 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/Feedback/Controller.php')
-rw-r--r--plugins/Feedback/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Feedback/Controller.php b/plugins/Feedback/Controller.php
index e2f55a8e50..e279429272 100644
--- a/plugins/Feedback/Controller.php
+++ b/plugins/Feedback/Controller.php
@@ -34,7 +34,7 @@ class Piwik_Feedback_Controller extends Piwik_Controller
$nonce = Piwik_Common::getRequestVar('nonce', '', 'string');
$view = Piwik_View::factory('sent');
- $view->feedbackEmailAddress = Zend_Registry::get('config')->General->feedback_email_address;
+ $view->feedbackEmailAddress = Piwik_Config::getInstance()->General['feedback_email_address'];
try
{
$minimumBodyLength = 40;