diff options
| author | Sean Bright <elixer@php.net> | 2001-07-05 23:29:11 +0000 |
|---|---|---|
| committer | Sean Bright <elixer@php.net> | 2001-07-05 23:29:11 +0000 |
| commit | 9d05cba6b8d4231b92682db43ac2a37a95af79e9 (patch) | |
| tree | 152d2a5afc568056971ff7ccd2151dd197ecf442 | |
| parent | 2b8945965beb1b072782f1c2660fbe6e3956f336 (diff) | |
| download | php-git-9d05cba6b8d4231b92682db43ac2a37a95af79e9.tar.gz | |
This should be lower-cased per the documentation and previous
implementation.
| -rw-r--r-- | ext/standard/file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index 2abc0478e8..9f85df9ad3 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -426,6 +426,8 @@ PHP_FUNCTION(get_meta_tags) in_tag = 1; } else if (tok == TOK_CLOSETAG) { if (have_name) { + /* For BC */ + php_strtolower(name, strlen(name)); if (have_content) { add_assoc_string(return_value, name, value, 0); } else { |
