Displaying 1 result from an estimated 1 matches for "ambiguous_place_except".
2006 May 25
0
uninitialized constant
.../active_support/dependencies.rb:122:in
`const_missing''
#{RAILS_ROOT}/app/models/search.rb:34:in `search_by_category_and_place''
#{RAILS_ROOT}/app/controllers/searches_controller.rb:22:in `search''
------------------
SearchesController
------------------
require ''ambiguous_place_exception''
class SearchesController < ApplicationController
def search
create
category = @search.category_string
location = @search.location
if Postcode.validate(location)
@results = Search.search_by_category_and_postcode(category,
location)
else
begin...