I made a search-field which shows all hits and highlights the all
words searched for:
def suche
if params[:link][:suchfeld] == "description"
@description = "show"
@highlight = params[:suche]
end
@link_pages, @links =
paginate :link, :order_by => 'url',
:conditions => ["#{params[:link][:suchfeld]} LIKE ?",
“%”+params[:suche]+"%"],
:include => [:member],
:per_page => 3
end
view:
<% if @description %>
Everything works fine when I get only 1 result page. When I get
more pages and click the pages_link highlighting no longer works.
You have a nil object when you didn’t expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.[]
WHat can I do?
Thanx