mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-7.1'
* PHP-7.1: fix condition
This commit is contained in:
commit
ee5c450694
1 changed files with 1 additions and 1 deletions
|
@ -1847,7 +1847,7 @@ function generate_test_php_ini()
|
|||
return;
|
||||
}
|
||||
|
||||
var ini_dir = PHP_OBJECT_OUT_DIR + ("yes" == PHP_DEBUG ? "Debug" : "Release") + (PHP_ZTS ? "_TS" : "");
|
||||
var ini_dir = PHP_OBJECT_OUT_DIR + ("yes" == PHP_DEBUG ? "Debug" : "Release") + ("yes" == PHP_ZTS ? "_TS" : "");
|
||||
PHP_TEST_INI_PATH = ini_dir + "\\test.ini";
|
||||
|
||||
if (FSO.FileExists(PHP_TEST_INI_PATH)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue