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/tests
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2007-08-01 22:05:00 +0400
committermattpiwik <matthieu.aubry@gmail.com>2007-08-01 22:05:00 +0400
commitbf39418947240ecfb17b64ee50afeefc82ff933c (patch)
treeb7dd3157eb906856f4b3b9703eb2e9ca1c348c51 /tests
parent01c888644ff655287e496741e137216e1d539ac1 (diff)
- implemented basic plugin system in the piwik.php logging engine
- added some config for the loggingEngine - wrote simple PDO access layer / simple config layer - specified all the classes/method of the piwik.php - ported the JS file from phpmyvisites and fixed some bugs in it (needs testing on IE/FF/OPERA/KONQUEROR/SAFARI on MAC/WINDOWS/LINUX with the plugins enabled/disabled) git-svn-id: http://dev.piwik.org/svn/trunk@24 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'tests')
-rwxr-xr-xtests/config_test.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/config_test.php b/tests/config_test.php
index 62e33b03f1..f36342e7ba 100755
--- a/tests/config_test.php
+++ b/tests/config_test.php
@@ -28,12 +28,13 @@ set_include_path(PATH_TEST_TO_ROOT
. PATH_SEPARATOR . PATH_TEST_TO_ROOT . '/core/models'
. PATH_SEPARATOR . get_include_path());
+require_once "Zend/Exception.php";
+require_once "Zend/Loader.php";
+
require_once PIWIK_INCLUDE_PATH . "/modules/ErrorHandler.php";
//set_error_handler('Piwik_ErrorHandler');
-require_once "Zend/Exception.php";
-require_once "Zend/Loader.php";
Zend_Loader::loadClass('Zend_Registry');
Zend_Loader::loadClass('Zend_Config_Ini');