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:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-20 09:06:20 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-20 09:06:20 +0400
commit75b284c8f6fdbe7f69782c693a8849892e434da3 (patch)
treeea41f9c6fa181ba1cf0f6cd6ee03d0400155d3be /index.php
parent6de375ec21d236dce4f7a3caebb2ac605e17f9ea (diff)
Remove Piwik autoloader and replace composer autoloader.
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index cc6780eb9b..e362f7d2c0 100644
--- a/index.php
+++ b/index.php
@@ -38,10 +38,10 @@ session_cache_limiter('nocache');
require_once file_exists(PIWIK_INCLUDE_PATH . '/vendor/autoload.php')
? PIWIK_INCLUDE_PATH . '/vendor/autoload.php' // Piwik is the main project
: PIWIK_INCLUDE_PATH . '/../../autoload.php'; // Piwik is installed as a dependency
-require_once PIWIK_INCLUDE_PATH . '/core/Loader.php';
if(!defined('PIWIK_PRINT_ERROR_BACKTRACE')) {
define('PIWIK_PRINT_ERROR_BACKTRACE', false);
}
require_once PIWIK_INCLUDE_PATH . '/core/dispatch.php';
+ // TODO: check every folder in libs/ for autoload crap (maybe move to composr?) \ No newline at end of file