summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Stradling <rob@comodo.com>2017-05-05 12:18:10 +0100
committerRob Stradling <rob@comodo.com>2017-05-05 12:18:10 +0100
commitedf771e7e6b88db7a89c15c8fbac1dcdb87f88cd (patch)
treeda948852d26eabecb10e38b7e86abac9c35fc839
parent057b29c2f0e55fd18daf0eefa1aaace28177296b (diff)
downloadcertwatch_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.fnc6
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')
|| '&nbsp; <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') || '&nbsp; <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') || '&nbsp; <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;