# HG changeset patch # User luisf # Date 1357731925 0 # Node ID 77f703281e146a9d4047db00c1060fd145a7778e # Parent cd2db8872493f3927c0e3799d83522972e72e4d6 Changed projects#explore to ensure compatibility with Rails 3. diff -r cd2db8872493 -r 77f703281e14 config/routes.rb --- a/config/routes.rb Wed Jan 09 11:25:55 2013 +0000 +++ b/config/routes.rb Wed Jan 09 11:45:25 2013 +0000 @@ -179,7 +179,8 @@ end match '/issues', :controller => 'issues', :action => 'destroy', :via => :delete - map.connect 'explore', :controller => 'projects', :action => 'explore' + # changed this route to ensure compatibility with Rails 3 --lf.20130109 + match 'explore' => 'projects#explore' resources :queries, :except => [:show]