From 6f44dc6de74bf55a9bf59987cd6b3951174724af Mon Sep 17 00:00:00 2001 From: dMetzger Date: Fri, 28 Sep 2012 13:58:51 +0000 Subject: [PATCH] // 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 --- classes/Tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Tools.php b/classes/Tools.php index 2bd1ffa0c..79300fef0 100644 --- a/classes/Tools.php +++ b/classes/Tools.php @@ -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; }