This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new a6fdff0b Convert to UTC
a6fdff0b is described below
commit a6fdff0ba9a87b3a877a5a45c5b6d1b9abd5baf3
Author: Sebb <[email protected]>
AuthorDate: Tue Mar 17 16:36:48 2026 +0000
Convert to UTC
---
www/members/check_invitations.cgi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/www/members/check_invitations.cgi
b/www/members/check_invitations.cgi
index 014eb12a..95f2516f 100755
--- a/www/members/check_invitations.cgi
+++ b/www/members/check_invitations.cgi
@@ -164,7 +164,7 @@ end
meeting_end = ASF::MeetingUtil.meeting_end
remain = ASF::MeetingUtil.application_time_remaining
-apps_end = ASF::MeetingUtil.applications_end
+apps_end =
Time.at(ASF::MeetingUtil.applications_end).getutc.strftime('%Y-%m-%d %H:%M %Z')
# produce HTML output of reports, highlighting ones that have not (yet)
# been posted
@@ -208,7 +208,7 @@ _html do
}
_p do
if remain[:hoursremain] > 0
- _b "Applications close in #{remain[:days]} days and
#{remain[:hours]} hours at #{Time.at(apps_end)}"
+ _b "Applications close in #{remain[:days]} days and
#{remain[:hours]} hours at #{apps_end}"
else
_b "Applications can no longer be accepted, sorry."
_ "The meeting ended at
#{Time.at(meeting_end).getutc.strftime('%Y-%m-%d %H:%M %Z')}."