You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2020/06/19 23:49:25 UTC

[whimsy] branch master updated: Pass Wunderbar _ to method

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 b582ac5  Pass Wunderbar _ to method
b582ac5 is described below

commit b582ac5fa54f12eb8dc5e68944a28181f8760606
Author: Sebb <se...@apache.org>
AuthorDate: Sat Jun 20 00:49:17 2020 +0100

    Pass Wunderbar _ to method
---
 www/members/proxy.cgi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/members/proxy.cgi b/www/members/proxy.cgi
index 288bf69..4e98529 100755
--- a/www/members/proxy.cgi
+++ b/www/members/proxy.cgi
@@ -152,7 +152,7 @@ def emit_form(cur_mtg_dir, meeting, volunteers)
 end
 
 # Emit a record of a user's submission - POST
-def emit_post(cur_mtg_dir, meeting)
+def emit_post(cur_mtg_dir, meeting, _)
   _h3_ 'Proxy Assignment - Session Transcript'
 
   # collect data
@@ -273,7 +273,7 @@ _html do
       if _.get?
         emit_form(cur_mtg_dir, meeting, MeetingUtil::getVolunteers(cur_mtg_dir))
       else # POST
-        emit_post(cur_mtg_dir, meeting)
+        emit_post(cur_mtg_dir, meeting, _)
       end
     end
   end