Merge pull request #1546 from kijin/fix/set-include-path

PEAR 로딩시 기존의 include_path 설정을 덮어쓰지 않도록 변경
This commit is contained in:
bnu 2015-07-06 14:54:23 +09:00
commit 5a65c9dfdb

View file

@ -1546,11 +1546,11 @@ function requirePear()
{
if(version_compare(PHP_VERSION, "5.3.0") < 0)
{
set_include_path(_XE_PATH_ . "libs/PEAR");
set_include_path(_XE_PATH_ . "libs/PEAR" . PATH_SEPARATOR . get_include_path());
}
else
{
set_include_path(_XE_PATH_ . "libs/PEAR.1.9.5");
set_include_path(_XE_PATH_ . "libs/PEAR.1.9.5" . PATH_SEPARATOR . get_include_path());
}
}