From: Stanislav Malyshev Date: Sun, 23 Jul 2000 11:27:48 +0000 (+0000) Subject: Make browscap not to lowercase its arguments X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~182 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b410eaf6d48b683e8c70911de3a3c810cad0624c;p=php 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 --- 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;