remove \d{1,s} from list of invalid regular expressions due to fix for bug 289628

git-svn-id: svn://10.0.0.236/trunk@179374 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bob%bclary.com 2005-08-31 04:30:34 +00:00
parent ceb32c81fe
commit c5fbcdc0d3

View File

@ -71,7 +71,7 @@ legalpatterns[5] = '[^\f\n\r\t\v](123.5)([4 - 8]$)';
illegalpatterns[0] = '(?)';
illegalpatterns[1] = '(a';
illegalpatterns[2] = '( ]';
illegalpatterns[3] = '\d{1,s}';
//illegalpatterns[3] = '\d{1,s}';
// valid flags to try -
legalflags[0] = 'i';