Change the date display

The date display was changed from 'm/d/Y' to 'd.m.Y'
This commit is contained in:
Vladyslav
2018-05-19 20:52:33 +03:00
parent 37e70a165b
commit a956abee13
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ class Account {
}
private function Activate() {
if(START_DATE < date('m/d/Y') or START_DATE == date('m/d/Y') && START_TIME <= date('H:i'))
if(START_DATE < date('d.m.Y') or START_DATE == date('d.m.Y') && START_TIME <= date('H:i'))
{
global $database;
$q = "SELECT act, username, password, email, tribe, location FROM ".TB_PREFIX."activate where act = '".$database->escape($_POST['id'])."'";