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:
authorFrederic Hemberger <mail@frederic-hemberger.de>2014-07-13 09:51:00 +0400
committerFrederic Hemberger <mail@frederic-hemberger.de>2014-07-13 09:51:00 +0400
commit93eeeaf3ddaa8b6ca58c39c41d8c3c2bd2a57308 (patch)
treed16ef6ea65a5f481faa4699771530b67159ad3f4 /misc
parentb3ad4d8491660f204c6a88961fbcff5a4a153453 (diff)
Fix merge conflict for b3ad4d8
Diffstat (limited to 'misc')
-rw-r--r--misc/cron/archive.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/misc/cron/archive.php b/misc/cron/archive.php
index 3f6e867fd6..6bb0de5011 100644
--- a/misc/cron/archive.php
+++ b/misc/cron/archive.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - Open source web analytics
+ * Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
@@ -37,6 +37,7 @@ if (false !== strpos($callee, 'archive.php')) {
Using this 'archive.php' script is no longer recommended.
Please use '/path/to/php $piwikHome/console core:archive " . implode('', array_slice($_SERVER['argv'], 1)) . "' instead.
To get help use '/path/to/php $piwikHome/console core:archive --help'
+See also: http://piwik.org/docs/setup-auto-archiving/
-------------------------------------------------------
\n\n";
}
@@ -44,8 +45,6 @@ To get help use '/path/to/php $piwikHome/console core:archive --help'
$archiving = new Piwik\CronArchive();
try {
$archiving->main();
-} catch (Piwik\CronArchiveFatalException $ex) {
- $ex->logAndExit($archiving);
} catch (Exception $e) {
- $archiving->logFatalExceptionAndExit($e);
+ $archiving->logFatalError($e->getMessage());
}