1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-30 04:39:02 +01:00

Merge branch '1.0' into 2.0

This commit is contained in:
terrafrost 2017-08-28 23:31:51 -05:00
commit df1a650485

View File

@ -2084,7 +2084,7 @@ class X509
}
if (!isset($date)) {
$date = new DateTime($date, new DateTimeZone(date_default_timezone_get()));
$date = new DateTime($date, new DateTimeZone(@date_default_timezone_get()));
}
$notBefore = $this->currentCert['tbsCertificate']['validity']['notBefore'];
@ -3839,7 +3839,7 @@ class X509
$date = new DateTime($date);
}
$this->startDate = $date->format('D, d M Y H:i:s O');
$this->startDate = $date->format('D, d M Y H:i:s O', new DateTimeZone(@date_default_timezone_get()));
}
/**
@ -3867,7 +3867,7 @@ class X509
$date = new DateTime($date);
}
$this->endDate = $date->format('D, d M Y H:i:s O');
$this->endDate = $date->format('D, d M Y H:i:s O', new DateTimeZone(@date_default_timezone_get()));
}
}