diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-07 14:36:49 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-07-07 14:36:49 +0000 |
commit | 7b40767428ac5c04ba80d95c7c90b049c73c7f36 (patch) | |
tree | 641733a4a56afead53aba5da5faba801d84c2c13 /app/views/messages | |
parent | 56666a41b82d98a773d93dd8fa903a4d702b07ec (diff) | |
download | redmine-7b40767428ac5c04ba80d95c7c90b049c73c7f36.tar.gz redmine-7b40767428ac5c04ba80d95c7c90b049c73c7f36.zip |
Deprecated :confirm => 'Text' option.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9937 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/messages')
-rw-r--r-- | app/views/messages/show.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb index d0857cf46..639dc2e7c 100644 --- a/app/views/messages/show.html.erb +++ b/app/views/messages/show.html.erb @@ -17,7 +17,7 @@ l(:button_delete), {:action => 'destroy', :id => @topic}, :method => :post, - :confirm => l(:text_are_you_sure), + :data => {:confirm => l(:text_are_you_sure)}, :class => 'icon icon-del' ) if @message.destroyable_by?(User.current) %> </div> @@ -52,7 +52,7 @@ image_tag('delete.png'), {:action => 'destroy', :id => message}, :method => :post, - :confirm => l(:text_are_you_sure), + :data => {:confirm => l(:text_are_you_sure)}, :title => l(:button_delete) ) if message.destroyable_by?(User.current) %> </div> |