You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ruby on Rails: Core
I have added a patch to ticket #805 that fixes what I believe is a
behavior that violates the principle of least surprise.
If the current URI is '/blog/posts' then current_page?(:controller =>
'blog', :action => 'posts') returns true as expected. However if the
current URI is '/blog/posts?order=desc' then current_page?(:controller
=> 'blog', :action => 'posts') returns false. Shouldn't it also
return true in this case? I think so.