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:
authormattab <matthieu.aubry@gmail.com>2014-12-10 08:18:52 +0300
committermattab <matthieu.aubry@gmail.com>2014-12-10 08:18:52 +0300
commit4addd859d0a346f33a137bd377e2e99f8a2d4068 (patch)
tree3c56988262c9cae1c68b100dcc28cf87402f943c /core/DataTable
parentc28f9d6e29fccc0e4d3b0d1c91a28667c620ee1e (diff)
Tweak exception message
Diffstat (limited to 'core/DataTable')
-rw-r--r--core/DataTable/Manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/DataTable/Manager.php b/core/DataTable/Manager.php
index d225b8fb87..07e7bc01b2 100644
--- a/core/DataTable/Manager.php
+++ b/core/DataTable/Manager.php
@@ -61,7 +61,7 @@ class Manager extends Singleton
public function getTable($idTable)
{
if (!isset($this->tables[$idTable])) {
- throw new TableNotFoundException(sprintf("This report has been reprocessed since your last click. To see this error less often, please increase the timeout value in seconds in Settings > General Settings. (error: id %s not found).", $idTable));
+ throw new TableNotFoundException(sprintf("Error: table id %s not found in memory. (If this error is causing you problems in production, please report it in Piwik issue tracker.)", $idTable));
}
return $this->tables[$idTable];