From 41abb5790e86e909ccd026f1062a5a1f68fab22f Mon Sep 17 00:00:00 2001
From: Ilya Zhitomirskiy <iz268@nyu.edu>
Date: Mon, 19 Sep 2011 14:16:26 -0700
Subject: [PATCH] changed the to proc syntax to explicit block syntax

---
 app/views/tags/show.haml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/views/tags/show.haml b/app/views/tags/show.haml
index 60e1850858..729f5eff2b 100644
--- a/app/views/tags/show.haml
+++ b/app/views/tags/show.haml
@@ -58,7 +58,7 @@
       %h2
         = "##{params[:name]}"
 
-    = render 'shared/publisher', :selected_aspects => all_aspects.map(&:id), :aspect_ids => all_aspects.map(&:id), :for_all_aspects => true, :aspect => all_aspects.first
+    = render 'shared/publisher', :selected_aspects => all_aspects.map{|a| a.id}, :aspect_ids => all_aspects.map{|a| a.id}, :for_all_aspects => true, :aspect => all_aspects.first
 
     %hr
 
-- 
GitLab