myexperiment-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myexperiment-hackers] [3771] trunk/app/views: Fixed spaces before paran


From: noreply
Subject: [myexperiment-hackers] [3771] trunk/app/views: Fixed spaces before parantheses causing 500 errors during rendering
Date: Tue, 5 Nov 2013 09:00:40 +0000 (UTC)

Revision
3771
Author
fbacall
Date
2013-11-05 09:00:39 +0000 (Tue, 05 Nov 2013)

Log Message

Fixed spaces before parantheses causing 500 errors during rendering

Modified Paths

Diff

Modified: trunk/app/views/feedback/index.rhtml (3770 => 3771)


--- trunk/app/views/feedback/index.rhtml	2013-11-04 15:24:48 UTC (rev 3770)
+++ trunk/app/views/feedback/index.rhtml	2013-11-05 09:00:39 UTC (rev 3771)
@@ -35,7 +35,7 @@
 
 <center>
 	<div class="box_form" style="width: 410px; margin: 2em 0; text-align: left;">
-		<% form_tag ({:action ="" :create}) do %>
+		<% form_tag({:action ="" :create}) do %>
 			<p><b>From</b></p>
 		  <%= text_field_tag :from, logged_in? ? current_user.name : params[:from], :size => 30 %>
 			

Modified: trunk/app/views/friendships/show.rhtml (3770 => 3771)


--- trunk/app/views/friendships/show.rhtml	2013-11-04 15:24:48 UTC (rev 3770)
+++ trunk/app/views/friendships/show.rhtml	2013-11-05 09:00:39 UTC (rev 3771)
@@ -76,7 +76,7 @@
 			
 			<!-- These forms serve as 'data senders' for Accept/Reject buttons -->
 	    
-	    <% form_tag (accept_user_friendship_path(@friendship.friend_id, @friendship)) do %>				  
+	    <% form_tag(accept_user_friendship_path(@friendship.friend_id, @friendship)) do %>
 		  	<%= hidden_field_tag "accept_msg", "" %>
 	    <% end %>
 		  

Modified: trunk/app/views/users/_invite.rhtml (3770 => 3771)


--- trunk/app/views/users/_invite.rhtml	2013-11-04 15:24:48 UTC (rev 3770)
+++ trunk/app/views/users/_invite.rhtml	2013-11-05 09:00:39 UTC (rev 3771)
@@ -4,7 +4,7 @@
    Send invitations to people who are not already on <%= Conf.sitename %>. You can include a message to intoduce yourself if you like.
 </div>
 
-<% form_tag (:controller => 'users', :action ="" 'process_invitations') do %>
+<% form_tag(:controller => 'users', :action ="" 'process_invitations') do %>
   <p style="line-heght: 1.5; margin-left: 1.5em">
   	<%= hidden_field_tag :invitations_user_id, current.id -%>
   	

reply via email to

[Prev in Thread] Current Thread [Next in Thread]