// You can now create an account if you are less than 10 #PSCFV-2095

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17613 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
dMetzger
2012-09-28 13:58:51 +00:00
parent 4cce8e929c
commit 6f44dc6de7
+1 -1
View File
@@ -1052,7 +1052,7 @@ class ToolsCore
public static function dateYears()
{
$tab = array();
for ($i = date('Y') - 10; $i >= 1900; $i--)
for ($i = date('Y'); $i >= 1900; $i--)
$tab[] = $i;
return $tab;
}