Problem z potwierdzeniem akcji

Witam. Mam problem z “:confirm”, mój link wygląda tak:

<%= link_to "Usuń", :confirm => 'Na pewno chcesz usunąć tą wiadomość z bazy danych ?', :action => "destroy", :id => i.id %>

Na stronie otrzymuje coś takiego:

/news/destroy/3?confirm=Na+pewno+chcesz+usun%C4%85%C4%87+t%C4%85+wiadomo%C5%9B%C4%87+z+bazy+danych+%3F

Zamiast wyświetlać potwierdzenie usunięcia, to przekazuje mi parametr w GET. W czym problem?

<%= link_to “Usuń”, :url => destroy_costam_path(i.id), :confirm => ‘Na pewno chcesz usunąć tą wiadomość z bazy danych ?’ %>

Albo bardziej naturalnie:

<%= link_to “Usuń”, destroy_costam_path(obj), :confirm => “…” %>

Albo RESTful:

<%= link_to "Usuń", costam_path(obj), :method => :delete, :confirm => "..." %>