From 6365a47a958cb3250b30b270da9b61d326c99f77 Mon Sep 17 00:00:00 2001
From: mattab <matthieu.aubry@gmail.com>
Date: Wed, 9 Apr 2014 14:49:04 +1200
Subject: [PATCH] The [Debug] section is overwritten by tests. Instead use a
 new [DebugTests] section that will not be overidden (in
 Config->setTestEnvironment)

---
 config/global.ini.php   | 6 ++++++
 core/Plugin/Manager.php | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/config/global.ini.php b/config/global.ini.php
index 747de31d39..9d76c4be20 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -86,6 +86,7 @@ tracker_always_new_visitor = 0
 ; Allow automatic upgrades to Beta or RC releases
 allow_upgrades_to_beta = 0
 
+[DebugTests]
 ; Set to 1 by default. If you set to 0, the standalone plugins (with their own git repositories)
 ; will not be loaded when executing tests.
 enable_load_standalone_plugins_during_tests = 1
@@ -277,6 +278,11 @@ datatable_archiving_maximum_rows_actions = 500
 ; because each subdirectory doesn't have paging at the bottom, so all data should be displayed if possible.
 datatable_archiving_maximum_rows_subtable_actions = 100
 
+; maximum number of rows for any of the Events tables (Categories, Actions, Names)
+datatable_archiving_maximum_rows_events = 500
+; maximum number of rows for sub-tables of the Events tables (eg. for the subtables Categories>Actions or Categories>Names).
+datatable_archiving_maximum_rows_subtable_events = 100
+
 ; maximum number of rows for other tables (Providers, User settings configurations)
 datatable_archiving_maximum_rows_standard = 500
 
diff --git a/core/Plugin/Manager.php b/core/Plugin/Manager.php
index 48c902860f..28d7737656 100644
--- a/core/Plugin/Manager.php
+++ b/core/Plugin/Manager.php
@@ -106,7 +106,7 @@ class Manager extends Singleton
     {
         $toLoad = array();
 
-        $loadStandalonePluginsDuringTests = @Config::getInstance()->Debug['enable_load_standalone_plugins_during_tests'];
+        $loadStandalonePluginsDuringTests = @Config::getInstance()->DebugTests['enable_load_standalone_plugins_during_tests'];
 
         foreach($this->readPluginsDirectory() as $plugin) {
             $forceDisable = array(
-- 
GitLab