summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2006-01-17 13:26:16 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2006-01-17 13:26:16 +0000
commit4f88af931190a71a6b1989d7235ffdc53eff0ac1 (patch)
treef73d9460e8fad76b0394f67bf2faefa71512fc22
parent80a34fc4ff7cb1864163e7f13e4630a4455cb6e4 (diff)
downloadMPC-4f88af931190a71a6b1989d7235ffdc53eff0ac1.tar.gz
ChangeLogTag: Tue Jan 17 07:25:29 2006 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog8
-rw-r--r--modules/FeatureParser.pm2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cde49078..d07d0e45 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Tue Jan 17 07:25:29 2006 Chad Elliott <elliott_c@ociweb.com>
+
+ * modules/FeatureParser.pm:
+
+ The previous change included a change to make features
+ case-insensitive. This change was not complete and has been
+ corrected.
+
Mon Jan 16 11:17:45 2006 Chad Elliott <elliott_c@ociweb.com>
* MPC.ico:
diff --git a/modules/FeatureParser.pm b/modules/FeatureParser.pm
index 44122dde..6d3424d3 100644
--- a/modules/FeatureParser.pm
+++ b/modules/FeatureParser.pm
@@ -68,7 +68,7 @@ sub parse_line {
if ($line eq '') {
}
elsif ($line =~ /^(\w+)\s*=\s*(\d+)$/) {
- $self->{'values'}->{$1} = $2;
+ $self->{'values'}->{lc($1)} = $2;
}
else {
$status = 0;