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

[whimsy] branch master updated: Apply fix suggested by @royfielding

This is an automated email from the ASF dual-hosted git repository.

rubys 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 53e9221  Apply fix suggested by @royfielding
53e9221 is described below

commit 53e9221e8a5225410efaa4f5b4ea1258ae645256
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Tue Jun 9 09:22:27 2020 -0400

    Apply fix suggested by @royfielding
    
    Fixes #95
---
 www/board/agenda/views/actions/send-reminders.json.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/board/agenda/views/actions/send-reminders.json.rb b/www/board/agenda/views/actions/send-reminders.json.rb
index 08fa502..2acbbd8 100644
--- a/www/board/agenda/views/actions/send-reminders.json.rb
+++ b/www/board/agenda/views/actions/send-reminders.json.rb
@@ -64,7 +64,7 @@ Agenda.parse(@agenda, :full).each do |item|
     from from
     to "#{item['owner']} <#{item['chair_email']}>".untaint
     cc cclist unless cclist.empty?
-    subject subject
+    subject subject.untaint
 
     body message.untaint
   end