fix parse error, stray executable bit

This commit is contained in:
Brion Vibber 2008-08-04 05:33:06 +00:00
parent 967fc54413
commit ea40085dc8

4
AbuseFilter.parser.php Executable file → Normal file
View file

@ -246,8 +246,8 @@ class AbuseFilterParser {
public function checkSyntax( $filter ) {
try {
$this->parse($filter);
} catch (AFPException excep) {
return excep->getMessage();
} catch (AFPException $excep) {
return $excep->getMessage();
}
return true;
}