This is an automated email from the ASF dual-hosted git repository.
curcuru 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 4d479d4d FIXME: fix data type; should consider what is really needed
4d479d4d is described below
commit 4d479d4dddc924db6d65c4a85bbef3980e707e0a
Author: Shane Curcuru <[email protected]>
AuthorDate: Thu Jan 23 19:59:51 2025 -0500
FIXME: fix data type; should consider what is really needed
---
www/members/board-nominate.cgi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www/members/board-nominate.cgi b/www/members/board-nominate.cgi
index a9177ab6..6429fc4c 100755
--- a/www/members/board-nominate.cgi
+++ b/www/members/board-nominate.cgi
@@ -14,7 +14,7 @@ require 'whimsy/asf/time-utils'
t_now = Time.now.to_i
t_end = ASF::MeetingUtil.nominations_close
-nomclosed = t_now > DateTime.parse(t_end).to_i
+nomclosed = t_now > DateTime.parse(t_end).to_s.to_i
def emit_form(title, prev_data)
_whimsy_panel(title, style: 'panel-success') do