mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
PEAR 로딩시 기존의 include_path 설정을 덮어쓰지 않도록 변경
This commit is contained in:
parent
e49f1b1cbb
commit
9be6b6b8e4
1 changed files with 2 additions and 2 deletions
|
|
@ -1549,11 +1549,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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue