> <%= form_tag :action => 'resolve_create', :resolve => @resolve %>
>   <p>resolution:<br />
>   <%= text_area 'resolve','content', :cols => 40, :rows => 12  %></p>
> 
> <%= submit_tag "save" %>
> 
Try below code

<%= form_tag :action => 'resolve_create' do %>
   <p>resolution:<br />
   <%= text_area 'resolve','content', :cols => 40, :rows => 12  %></p>
 <%= submit_tag "save" %>
<%end>
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to