Fixed problem with ranges in regexps that I dreamt about a few nights ago.

This commit is contained in:
gerv%gerv.net 2000-12-14 17:39:33 +00:00
Родитель 728a1aad5e
Коммит 7264e82a4f
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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");
}