diff options
author | Rob Stradling <rob@comodo.com> | 2017-05-05 12:18:10 +0100 |
---|---|---|
committer | Rob Stradling <rob@comodo.com> | 2017-05-05 12:18:10 +0100 |
commit | edf771e7e6b88db7a89c15c8fbac1dcdb87f88cd (patch) | |
tree | da948852d26eabecb10e38b7e86abac9c35fc839 | |
parent | 057b29c2f0e55fd18daf0eefa1aaace28177296b (diff) | |
download | certwatch_db-edf771e7e6b88db7a89c15c8fbac1dcdb87f88cd.zip certwatch_db-edf771e7e6b88db7a89c15c8fbac1dcdb87f88cd.tar.gz certwatch_db-edf771e7e6b88db7a89c15c8fbac1dcdb87f88cd.tar.bz2 |
Use UTC consistently, rather than a mixture of GMT and UTC.
-rw-r--r-- | web_apis.fnc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web_apis.fnc b/web_apis.fnc index c22b628..9ad148a 100644 --- a/web_apis.fnc +++ b/web_apis.fnc @@ -2921,7 +2921,7 @@ Content-Type: application/json ' <TR> <TD>' || to_char(l_record.ENTRY_TIMESTAMP, 'YYYY-MM-DD') || ' <FONT class="small">' - || to_char(l_record.ENTRY_TIMESTAMP, 'HH24:MI:SS GMT') + || to_char(l_record.ENTRY_TIMESTAMP, 'HH24:MI:SS UTC') || '</FONT></TD> <TD>' || l_record.ENTRY_ID::text || '</TD> <TD>' || html_escape(l_record.OPERATOR) || '</TD> @@ -3071,7 +3071,7 @@ Content-Type: application/json END || '</SPAN></TD><TD>Serial Number</TD><TD>' || to_char(cr.REVOCATION_DATE, 'YYYY-MM-DD') || ' <FONT class="small">' - || to_char(cr.REVOCATION_DATE, 'HH24:MI:SS GMT') || '</FONT>' + || to_char(cr.REVOCATION_DATE, 'HH24:MI:SS UTC') || '</FONT>' INTO t_temp0 FROM crl_revoked cr WHERE cr.CA_ID = t_issuerCAID @@ -3114,7 +3114,7 @@ Content-Type: application/json SELECT '<SPAN style="color:#CC0000">Revoked</SPAN></TD><TD>Issuer Name, Serial Number</TD><TD>' || to_char(mo.CREATED, 'YYYY-MM-DD') || ' <FONT class="small">' - || to_char(mo.CREATED, 'HH24:MI:SS GMT') || '</FONT>' + || to_char(mo.CREATED, 'HH24:MI:SS UTC') || '</FONT>' INTO t_temp3 FROM mozilla_onecrl mo WHERE mo.CERTIFICATE_ID = t_certificateID; |