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-03-26 06:34:45 +0400
committermattab <matthieu.aubry@gmail.com>2014-03-26 06:34:45 +0400
commit82fd056238feb7a9f6b549d1d6e298ebbef2040f (patch)
treed60f2578fd89bc3e0e2278220d3de9ed75d47571 /core/Config.php
parentaaafe466fc3634fb761697f95e3cefefba2b6a3f (diff)
Add new setting datatable_export_range_as_day = "rss" to let users customise the list of formats for which the data should be exported daily instead of, for the overall range.
Diffstat (limited to 'core/Config.php')
-rw-r--r--core/Config.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Config.php b/core/Config.php
index 44af08de23..abbc604f04 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -216,7 +216,8 @@ class Config extends Singleton
return array(
'action_url_category_delimiter' => $general['action_url_category_delimiter'],
- 'autocomplete_min_sites' => $general['autocomplete_min_sites']
+ 'autocomplete_min_sites' => $general['autocomplete_min_sites'],
+ 'datatable_export_range_as_day' => $general['datatable_export_range_as_day']
);
}