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

This commit is contained in:
dMetzger
2012-09-28 13:58:51 +00:00
parent fa36e0ff62
commit 7ec5df2c32
+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;
}