Change escaping handling -- make \d => \d instead of d. It helps with writing regexes.

This commit is contained in:
Andrew Garrett 2009-03-07 01:31:35 +00:00
parent 55b417f517
commit 5983a65415

View file

@ -780,7 +780,7 @@ class AbuseFilterParser {
$tok .= 'x';
}
} else {
$tok .= $code[$offset + 1];
$tok .= "\\" . $code[$offset + 1];
}
$offset+=2;