mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-04 07:40:42 +00:00
Fixed problem with ranges in regexps that I dreamt about a few nights ago.
This commit is contained in:
parent
728a1aad5e
commit
7264e82a4f
@ -62,7 +62,7 @@ else
|
||||
}
|
||||
|
||||
# Check for changedsince param, and see if it's a positive integer
|
||||
if (defined(param("changedsince")) && param("changedsince") =~ /^\d{1,4}$/)
|
||||
if (defined(param("changedsince")) && param("changedsince") =~ /^\d{1-4}$/)
|
||||
{
|
||||
$changedsince = param("changedsince");
|
||||
}
|
||||
@ -75,7 +75,7 @@ else
|
||||
$before = &days_ago($changedsince);
|
||||
|
||||
# check for max rows parameter
|
||||
if (defined(param("maxrows")) && param("maxrows") =~ /^\d{1,4}$/)
|
||||
if (defined(param("maxrows")) && param("maxrows") =~ /^\d{1-4}$/)
|
||||
{
|
||||
$maxrows = param("maxrows");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user