Revert "Don't add redundant includedir INSTALLDIR.'/extlib/'"

This reverts commit 31d8069779.

I didn't notice any errors because I had php-pear installed. :]
This commit is contained in:
Mikael Nordfeldth 2014-03-15 14:04:11 +01:00
parent 44d292b33b
commit 0a4e1e0f1b
1 changed files with 7 additions and 1 deletions

View File

@ -36,7 +36,13 @@ ini_set("max_input_time", "0");
set_time_limit(0);
mb_internal_encoding('UTF-8');
require_once INSTALLDIR . '/extlib/Console/Getopt.php';
// Add extlib to our path so we can get Console_Getopt
$_extra_path = array(INSTALLDIR.'/extlib/');
set_include_path(implode(PATH_SEPARATOR, $_extra_path) . PATH_SEPARATOR . get_include_path());
require_once 'Console/Getopt.php';
// Note: $shortoptions and $longoptions should be pre-defined!