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:
authorrobocoder <anthon.pang@gmail.com>2009-06-11 09:34:39 +0400
committerrobocoder <anthon.pang@gmail.com>2009-06-11 09:34:39 +0400
commit26db3c9e839d058d45cc64bffb81485d2db3a6e1 (patch)
tree6f31ba8b2f59544ad8a132ae64aa8ad1e534caa9 /index.php
parentbda6e65196ff03a5316362090143745d16cadac7 (diff)
Fixes #783 - don't append preset include path; thanks feyp.
git-svn-id: http://dev.piwik.org/svn/trunk@1205 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'index.php')
-rwxr-xr-xindex.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/index.php b/index.php
index 564bb487a1..0866271b1a 100755
--- a/index.php
+++ b/index.php
@@ -22,8 +22,7 @@ if(!defined('PIWIK_INCLUDE_PATH'))
if((@include "Version.php") === false || !class_exists('Piwik_Version')) {
set_include_path(PIWIK_INCLUDE_PATH . '/core'
. PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/libs'
- . PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/plugins'
- . PATH_SEPARATOR . get_include_path());
+ . PATH_SEPARATOR . PIWIK_INCLUDE_PATH . '/plugins');
}
require_once "core/testMinimumPhpVersion.php";