Fixed up Pls reading so it doesn't try including any old entry with an =.

CQTexperiment
vspader 2009-03-04 22:55:51 -08:00
parent 545e658192
commit 5080a71c4e
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@
if (![scanner scanUpToString:@"=" intoString:&lhs] || // get LHS
![scanner scanString:@"=" intoString:nil] || // skip the =
![scanner scanUpToString:@"" intoString:&rhs] || // get RHS
![lhs caseInsensitiveCompare:@"File"]) // We only want file entries
[lhs rangeOfString:@"File" options:NSCaseInsensitiveSearch|NSAnchoredSearch].location == NSNotFound) // We only want file entries
{
[scanner release];
continue;