summaryrefslogtreecommitdiff
path: root/main/configuration-parser.y
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2000-07-23 11:27:48 +0000
committerStanislav Malyshev <stas@php.net>2000-07-23 11:27:48 +0000
commitb410eaf6d48b683e8c70911de3a3c810cad0624c (patch)
tree44bcc2225e3a03d1930a9d82cc976a4c82f10272 /main/configuration-parser.y
parenta172147a91813c41f52ae3a18cc8b4c74956831c (diff)
downloadphp-git-b410eaf6d48b683e8c70911de3a3c810cad0624c.tar.gz
Make browscap not to lowercase its arguments
# Why it is doing it? Parent matching doesn't work with lowercase # If there was any reason to it, please tell
Diffstat (limited to 'main/configuration-parser.y')
-rw-r--r--main/configuration-parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/configuration-parser.y b/main/configuration-parser.y
index c5010c3e43..65cdf3e766 100644
--- a/main/configuration-parser.y
+++ b/main/configuration-parser.y
@@ -463,7 +463,7 @@ statement:
new_property->value.str.val = $3.value.str.val;
new_property->value.str.len = $3.value.str.len;
new_property->type = IS_STRING;
- zend_str_tolower(new_property->value.str.val, new_property->value.str.len);
+ /* zend_str_tolower(new_property->value.str.val, new_property->value.str.len); */
zend_hash_update(current_section->value.obj.properties, $1.value.str.val, $1.value.str.len+1, &new_property, sizeof(zval *), NULL);
}
break;