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/cron
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-01-12 04:44:22 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-01-12 04:44:22 +0300
commitff9e415fb23ae06aa68a73e2c3dcf32ff092444b (patch)
tree5aa0963d3283010a14e67107736f218765dd2005 /misc/cron
parent636d5400a7aee9fff5b3966b06c5d4e248ce825c (diff)
Simplified get from container with new shorter method
Diffstat (limited to 'misc/cron')
-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 37513b1a42..3e27babc44 100644
--- a/misc/cron/updatetoken.php
+++ b/misc/cron/updatetoken.php
@@ -59,7 +59,7 @@ $token = Db::get()->fetchOne("SELECT token_auth
WHERE superuser_access = 1
ORDER BY date_registered ASC");
-$filename = StaticContainer::getContainer()->get('path.tmp') . '/cache/token.php';
+$filename = StaticContainer::get('path.tmp') . '/cache/token.php';
$content = "<?php exit; //\t" . $token;
file_put_contents($filename, $content);