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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-11-27 18:17:11 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-11-27 18:17:11 +0300
commitd1226a1f670469aa0b1c3c023c667d24830a97bc (patch)
treeb8ba81e92ba8d0d0a27e207ca6498fe81753d860 /plugins/Referers/functions.php
parent8add4726e4fda925b62411e153eee62d7acb5d44 (diff)
- killing the newsletter feature, now superset by campaign feature
Diffstat (limited to 'plugins/Referers/functions.php')
-rw-r--r--plugins/Referers/functions.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/Referers/functions.php b/plugins/Referers/functions.php
index 1d218af35f..9df808e0b1 100644
--- a/plugins/Referers/functions.php
+++ b/plugins/Referers/functions.php
@@ -54,12 +54,13 @@ function Piwik_getRefererTypeLabel($label)
case Piwik_Common::REFERER_TYPE_WEBSITE:
$indexTranslation = 'Referers_Websites';
break;
- case Piwik_Common::REFERER_TYPE_NEWSLETTER:
- $indexTranslation = 'Referers_Newsletters';
- break;
case Piwik_Common::REFERER_TYPE_CAMPAIGN:
$indexTranslation = 'Referers_Campaigns';
break;
+ default:
+ // case of newsletter, partners, before Piwik 0.2.25
+ $indexTranslation = 'General_Others';
+ break;
}
return Piwik_Translate($indexTranslation);
} \ No newline at end of file