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:
authorThomas Steur <thomas.steur@googlemail.com>2014-10-13 06:21:24 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-10-13 06:21:24 +0400
commit9f4ba4eea6c85a92b87fbad6f0556ee5d8551762 (patch)
tree0225fe694c5d6b15ca9ba9d528e16f03ce4249bd /misc/others
parentc87dc623acf264d7559991cfc66cefa85bba4f1f (diff)
refs #5940 moved files into a subfolder framework, added autoloader to remove duplicated code to load autoload.php and to be able to register more autoloaders (eg for test files) on demand. This I got read of many includes that had to be updated all the time and that had to be updated all the time when moving iles
Diffstat (limited to 'misc/others')
-rw-r--r--misc/others/cli-script-bootstrap.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/others/cli-script-bootstrap.php b/misc/others/cli-script-bootstrap.php
index bd1f7ea6ec..f26d45abcc 100644
--- a/misc/others/cli-script-bootstrap.php
+++ b/misc/others/cli-script-bootstrap.php
@@ -28,9 +28,8 @@ set_time_limit(0);
require_once PIWIK_INCLUDE_PATH . '/libs/upgradephp/upgrade.php';
require_once PIWIK_INCLUDE_PATH . '/core/testMinimumPhpVersion.php';
-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';
+\Piwik\Loader::init();
$GLOBALS['PIWIK_TRACKER_DEBUG'] = false;
define('PIWIK_ENABLE_DISPATCH', false);