Fix bad dateTime namespace

This commit is contained in:
Romain Neutron
2012-02-17 13:00:09 +01:00
parent 9dd8dd0c22
commit 444e570d72

View File

@@ -340,7 +340,7 @@ class ValidationSession
return null; return null;
} }
$date_obj = new DateTime(); $date_obj = new \DateTime();
return $date_obj > $this->getExpires(); return $date_obj > $this->getExpires();
} }