Forums » Development »
Link of "root" in repository points to "Internal error"!
Added by Billy T almost 13 years ago
When I moved mouse on the link, it showed:
localhost/projects/test/repository?path=
I am using trunk 8195.
Replies (4)
RE: Link of "root" in repository points to "Internal error"! - Added by Etienne Massip almost 13 years ago
Indeed.
NoMethodError (undefined method `join' for "":String): app/controllers/repositories_controller.rb:259:in `find_repository' config/initializers/mongrel.rb:62:in `dispatch_cgi'
RE: Link of "root" in repository points to "Internal error"! - Added by Etienne Massip almost 13 years ago
source:/trunk/app/controllers/repositories_controller.rb#L259: unless params[:path].nil?
should be unless params[:path].blank?
.
RE: Link of "root" in repository points to "Internal error"! - Added by Etienne Massip almost 13 years ago
It was a missing route; it should be fixed with r8196.
RE: Link of "root" in repository points to "Internal error"! - Added by Billy T almost 13 years ago
Fixed! Thank you.