summaryrefslogtreecommitdiff
path: root/main/php_ini.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/php_ini.c')
-rw-r--r--main/php_ini.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_ini.c b/main/php_ini.c
index a8fe299249..406f5ac79b 100644
--- a/main/php_ini.c
+++ b/main/php_ini.c
@@ -222,7 +222,7 @@ char *php_ini_string(char *name, uint name_length, int orig)
if (_php3_hash_find(&known_directives, name, name_length, (void **) &ini_entry)==SUCCESS) {
if (orig && ini_entry->orig_value) {
return ini_entry->orig_value;
- } else if (ini_entry->value) {
+ } else {
return ini_entry->value;
}
}