0001-fixed-Bug-5813-logout-choice-no-was-treated-as-yes.patch

fixed Bug #5813, logout choice "no" was treated as "yes" - Barney, 01/30/2010 12:30 pm

Download (887 Bytes)

 
b/app/views/active_rbac/login/logout.rhtml
2 2

  
3 3
<% form_for :user, :url => { :action => :logout } do |form| %>
4 4
  <%= submit_tag(I18n.t('general.yep'), :name => 'yes') %>
5
  <%= submit_tag(I18n.t('general.nope'), :name => 'yes') %>
6
<% end %>
5
  <%= submit_tag(I18n.t('general.nope'), :name => 'no') %>
6
<% end %>
7
-