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/core
diff options
context:
space:
mode:
authorFabian Becker <fabian.becker@uni-tuebingen.de>2013-09-06 19:03:30 +0400
committerFabian Becker <fabian.becker@uni-tuebingen.de>2013-09-06 19:03:30 +0400
commit446567ddd0903eff0e3aaabb0a72afd056790aa6 (patch)
treeb6e76d32efcf36a4560b84d7197f15bf269e93b2 /core
parent20c171c05ef85f4b3b6a81d44b6be6b87a422fd5 (diff)
Fix syntax error. VisitExcluded is not an Exception, nor is it ever thrown
Diffstat (limited to 'core')
-rw-r--r--core/Tracker.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/Tracker.php b/core/Tracker.php
index 8853aba7d3..c817fe5b72 100644
--- a/core/Tracker.php
+++ b/core/Tracker.php
@@ -248,7 +248,6 @@ class Tracker
} catch (DbException $e) {
Common::printDebug("<b>" . $e->getMessage() . "</b>");
$this->exitWithException($e, $isAuthenticated);
- } catch (VisitExcluded $e) {
} catch (Exception $e) {
$this->exitWithException($e, $isAuthenticated);
}