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:
authormattab <matthieu.aubry@gmail.com>2013-10-09 08:03:35 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-09 08:03:35 +0400
commit81ccb29b440e98ed9147e84781df0fce34ee6542 (patch)
tree378a809d208f6a2cc188489017b87a98501023f2 /core/DataTable/Filter/ReplaceSummaryRowLabel.php
parent98935b7cca73c74dac77d3661239a2055e6b8f8f (diff)
Refs #4202 removing functions Piwik_Translate and Piwik_TranslateException
Diffstat (limited to 'core/DataTable/Filter/ReplaceSummaryRowLabel.php')
-rw-r--r--core/DataTable/Filter/ReplaceSummaryRowLabel.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/DataTable/Filter/ReplaceSummaryRowLabel.php b/core/DataTable/Filter/ReplaceSummaryRowLabel.php
index 0a7ef49dc7..48647939aa 100644
--- a/core/DataTable/Filter/ReplaceSummaryRowLabel.php
+++ b/core/DataTable/Filter/ReplaceSummaryRowLabel.php
@@ -13,6 +13,7 @@ namespace Piwik\DataTable\Filter;
use Piwik\DataTable\Filter;
use Piwik\DataTable;
use Piwik\DataTable\Manager;
+use Piwik\Piwik;
/**
*
@@ -29,7 +30,7 @@ class ReplaceSummaryRowLabel extends Filter
{
parent::__construct($table);
if (is_null($newLabel)) {
- $newLabel = Piwik_Translate('General_Others');
+ $newLabel = Piwik::translate('General_Others');
}
$this->newLabel = $newLabel;
}