forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit 4d35ce5
Fix swapped variables
In php#18527, I accidentally swapped the values. This is before my modification:
```
zend_printf("Configuration File (php.ini) Path: %s\n", PHP_CONFIG_FILE_PATH);
zend_printf("Loaded Configuration File: %s\n", php_ini_opened_path ? php_ini_opened_path : "(none)");
zend_printf("Scan for additional .ini files in: %s\n", php_ini_scanned_path ? php_ini_scanned_path : "(none)");
```
- "Loaded Configuration File" should be `php_ini_opened_path`
- "Scan for additional .ini files in" shoudl be `php_ini_scanned_path`1 parent 1de16c7 commit 4d35ce5
1 file changed
+4
-4
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1107 | 1107 |
| |
1108 | 1108 |
| |
1109 | 1109 |
| |
1110 | - | ||
1111 | - | ||
1110 | + | ||
1111 | + | ||
1112 | 1112 |
| |
1113 | 1113 |
| |
1114 | 1114 |
| |
1115 | - | ||
1116 | - | ||
1115 | + | ||
1116 | + | ||
1117 | 1117 |
| |
1118 | 1118 |
| |
1119 | 1119 |
| |
|
0 commit comments