diff options
author | Rob Stradling <rob@comodo.com> | 2017-01-10 12:32:41 +0000 |
---|---|---|
committer | Rob Stradling <rob@comodo.com> | 2017-01-10 12:32:41 +0000 |
commit | e9547e9292bca0d1c0ab293358dd96ad0c41f536 (patch) | |
tree | 1d0c54887c5079d60efb1eb254e5a00a0e86ee6f | |
parent | dc80bf8b48f5d7cff31681bfe91bc08cebe6896e (diff) | |
download | certwatch_db-e9547e9292bca0d1c0ab293358dd96ad0c41f536.zip certwatch_db-e9547e9292bca0d1c0ab293358dd96ad0c41f536.tar.gz certwatch_db-e9547e9292bca0d1c0ab293358dd96ad0c41f536.tar.bz2 |
Nowrap Logged At and Not Before dates.
-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 e3b1edf..62b9c2f 100644 --- a/web_apis.fnc +++ b/web_apis.fnc @@ -3609,15 +3609,15 @@ Content-Type: application/atom+xml END IF; t_output := t_output || ' </TH> - <TH> - <A href="?' || t_temp || '&dir=' || t_oppositeDirection || '&sort=1' || t_minNotBeforeString || coalesce(t_excludeExpired, '') || coalesce(t_excludeCAsString, '') || t_groupByParameter || '">Logged At</A> + <TH style="white-space:nowrap"> + <A href="?' || t_temp || '&dir=' || t_oppositeDirection || '&sort=1' || t_minNotBeforeString || coalesce(t_excludeExpired, '') || coalesce(t_excludeCAsString, '') || t_groupByParameter || '">Logged At</A> '; IF t_sort = 1 THEN t_output := t_output || ' ' || t_dirSymbol; END IF; t_output := t_output || ' </TH> - <TH><A href="?' || t_temp || '&dir=' || t_oppositeDirection || '&sort=2' || t_minNotBeforeString || coalesce(t_excludeExpired, '') || coalesce(t_excludeCAsString, '') || t_groupByParameter || '">Not Before</A> + <TH style="white-space:nowrap"><A href="?' || t_temp || '&dir=' || t_oppositeDirection || '&sort=2' || t_minNotBeforeString || coalesce(t_excludeExpired, '') || coalesce(t_excludeCAsString, '') || t_groupByParameter || '">Not Before</A> '; IF t_sort = 2 THEN t_output := t_output || ' ' || t_dirSymbol; |