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:
authormatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-08-17 01:45:46 +0400
committermatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-08-17 01:45:46 +0400
commit9582c531ab19f6676bfed82f75395d66fd6b98b3 (patch)
tree7e79d27330b83a9b3f4442b5f794ea326b788fbd /piwik.php
parentd24603379e1b00435854b017148d484f4206bbfc (diff)
Ooch what a productive day!!!
feeling good darling :-) plugged all the basic features from phpmyvisites for daily archives but with a nice architecture, modularity, plugins are configurable in the config file (waiting for a nice GUI of course) handles empty days, multiple sites, fixed small bugs here and there
Diffstat (limited to 'piwik.php')
-rw-r--r--piwik.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/piwik.php b/piwik.php
index 4dbac04c56..b242676181 100644
--- a/piwik.php
+++ b/piwik.php
@@ -27,15 +27,13 @@ define('PIWIK_DATAFILES_INCLUDE_PATH', PIWIK_INCLUDE_PATH . "/modules/DataFiles"
set_include_path(PIWIK_INCLUDE_PATH
. PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/libs/'
- . PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/core/'
+ . PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/plugins/'
. PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/modules'
- . PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/core/models'
. PATH_SEPARATOR . get_include_path() );
require_once "Common.php";
-require_once "PluginManager.php";
+require_once "PluginsManager.php";
require_once "LogStats.php";
-require_once "LogStats/Plugins.php";
require_once "LogStats/Config.php";
require_once "LogStats/Action.php";
require_once "LogStats/Cookie.php";