diff options
Diffstat (limited to 'app/views/general/frontpage.rhtml')
-rw-r--r-- | app/views/general/frontpage.rhtml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/general/frontpage.rhtml b/app/views/general/frontpage.rhtml index 9584b1608..bf6ccc6b9 100644 --- a/app/views/general/frontpage.rhtml +++ b/app/views/general/frontpage.rhtml @@ -58,14 +58,14 @@ <div id="find_information"> <h1>Explore government information that others received</h1> - <% if @search_results.empty? %> + <% if @xapian_object.results.empty? %> <p>None yet.</p> <% else %> - <% for search_result in @search_results %> - <% if search_result[:model].class.to_s == 'InfoRequestEvent' %> - <%= render :partial => 'request/request_listing_via_event', :locals => { :event => search_result[:model], :info_request => search_result[:model].info_request } %> + <% for result in @xapian_object.results %> + <% if result[:model].class.to_s == 'InfoRequestEvent' %> + <%= render :partial => 'request/request_listing_via_event', :locals => { :event => result[:model], :info_request => result[:model].info_request } %> <% else %> - <p><strong>Unexpected search result type <%=search_result[:model].class.to_s%></strong></p> + <p><strong>Unexpected search result type <%=result[:model].class.to_s%></strong></p> <% end %> <% end %> <% end %> |