Remove use of deprecated :comment attribute on link_to and button_to

This commit is contained in:
Tom Hughes 2012-06-18 11:19:32 +01:00
parent 0adb54ad86
commit 13ef6a2df1
6 changed files with 14 additions and 14 deletions

View file

@ -27,6 +27,6 @@
<table>
<tr>
<td><%= button_to t('oauth_clients.show.edit'), edit_oauth_client_path(@client_application.user.display_name, @client_application), :method => :get %></td>
<td><%= button_to t('oauth_clients.show.delete'), oauth_client_path(@client_application.user.display_name, @client_application), :method => :delete, :confirm => t('oauth_clients.show.confirm') %></td>
<td><%= button_to t('oauth_clients.show.delete'), oauth_client_path(@client_application.user.display_name, @client_application), :method => :delete, :data => { :confirm => t('oauth_clients.show.confirm') } %></td>
</tr>
</table>