mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
bug:2964 zero should be allowed for the recent period
only the profile page didn't allowed it git-svn-id: http://piwigo.org/svn/trunk@25120 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -133,7 +133,7 @@ function save_profile_from_post($userdata, &$errors)
|
||||
|
||||
// periods must be integer values, they represents number of days
|
||||
if (!preg_match($int_pattern, $_POST['recent_period'])
|
||||
or $_POST['recent_period'] <= 0)
|
||||
or $_POST['recent_period'] < 0)
|
||||
{
|
||||
$errors[] = l10n('Recent period must be a positive integer value') ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user