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>2014-10-07 05:35:31 +0400
committermattab <matthieu.aubry@gmail.com>2014-10-07 05:35:31 +0400
commitafc07ada2ec817685887ce969cb57b280102b685 (patch)
treecc0adbfd6d73d89492cb098f5c1b835adbeb5f69 /plugins
parent41683f980bfb248cc580514f71048f04bee8b36f (diff)
Fixes #6309 Remove "Website" from the Email subject and form the report title.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ScheduledReports/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ScheduledReports/API.php b/plugins/ScheduledReports/API.php
index a42b5bb209..9e91defd06 100644
--- a/plugins/ScheduledReports/API.php
+++ b/plugins/ScheduledReports/API.php
@@ -560,7 +560,7 @@ class API extends \Piwik\Plugin\API
private static function getReportSubjectAndReportTitle($websiteName, $reports)
{
// if the only report is "All websites", we don't display the site name
- $reportTitle = Piwik::translate('General_Website') . " " . $websiteName;
+ $reportTitle = $websiteName;
$reportSubject = $websiteName;
if (count($reports) == 1
&& $reports[0] == 'MultiSites_getAll'