From: Chuck Hagenbuch Date: Fri, 23 Apr 2010 19:44:24 +0000 (-0400) Subject: Find the framework libs one level up from test.php as well X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=f7454dbb0f90225526b65ae5d0e630b25455d2a5;p=horde.git Find the framework libs one level up from test.php as well --- diff --git a/horde/test.php b/horde/test.php index a0756248a..ce0fbbec0 100644 --- a/horde/test.php +++ b/horde/test.php @@ -27,7 +27,7 @@ function _hordeTestError($msg) /* If we can't find the Autoloader, then the framework is not setup. A user * must at least correctly install the framework. */ -ini_set('include_path', dirname(__FILE__) . '/lib' . PATH_SEPARATOR . ini_get('include_path')); +ini_set('include_path', dirname(__FILE__) . '/lib' . PATH_SEPARATOR . dirname(dirname(__FILE__)) . '/lib' . PATH_SEPARATOR . ini_get('include_path')); if (!@include_once 'Horde/Autoloader.php') { _hordeTestError(sprintf('Could not find Horde\'s framework libraries in the following path(s): %s. Please read horde/docs/INSTALL for information on how to install these libraries.', get_include_path())); }