mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 03:09:58 +03:00
fixes #1750 input parameter check was too strong
This commit is contained in:
parent
51d2112e76
commit
ba08bffcb2
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ function parse_well_known_params_url($tokens, &$i)
|
|||
foreach ($page['chronology_date'] as $date_token)
|
||||
{
|
||||
// each date part must be an integer (number of the year, number of the month, number of the week or number of the day)
|
||||
if (!preg_match('/^\d+$/', $date_token))
|
||||
if (!preg_match('/^(\d+|any)$/', $date_token))
|
||||
{
|
||||
fatal_error('bad chronology field (date)');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue