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/misc
diff options
context:
space:
mode:
authorStefan Giehl <stefan@piwik.org>2018-07-24 00:38:38 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2018-07-24 00:38:38 +0300
commit8d3d72071013ac93dda83fe15915cffd9319eda7 (patch)
tree9a8ab786f2d407a1895d9b3eac887aa0290b0a3f /misc
parent2b33801393deb7d5c27a9480bd512a58740d5ac6 (diff)
Renames console to Matomo (#13192)
and changes --piwik-domain option to --matomo-domain
Diffstat (limited to 'misc')
-rw-r--r--misc/cron/updatetoken.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/cron/updatetoken.php b/misc/cron/updatetoken.php
index 71f2ba03c3..9a91443a10 100644
--- a/misc/cron/updatetoken.php
+++ b/misc/cron/updatetoken.php
@@ -43,7 +43,7 @@ if ($testmode) {
function getPiwikDomain()
{
foreach($_SERVER['argv'] as $param) {
- $pattern = '--piwik-domain=';
+ $pattern = '--matomo-domain=';
if(false !== strpos($param, $pattern)) {
return substr($param, strlen($pattern));
}