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 b7970511 Fix type of the variable, too
b7970511 is described below
commit b7970511a1fe1533ab7a893a25c7373494614ba3
Author: Shane Curcuru <[email protected]>
AuthorDate: Thu Jan 23 19:05:50 2025 -0500
Fix type of the variable, too
---
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 a6e371ab..a9177ab6 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)
+nomclosed = t_now > DateTime.parse(t_end).to_i
def emit_form(title, prev_data)
_whimsy_panel(title, style: 'panel-success') do