muck-raker 0.1.41 → 0.1.42
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/controllers/muck/entries_controller.rb +2 -0
- data/app/views/entries/search.html.erb +1 -0
- data/muck-raker.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.42
|
@@ -87,6 +87,8 @@ class Muck::EntriesController < ApplicationController
|
|
87
87
|
log_query(current_user.nil? ? request.remote_addr : current_user.id, Language.locale_id, @tag_filter.nil? ? 'search' : 'browse', @search, @grain_size, @hit_count)
|
88
88
|
end
|
89
89
|
rescue MuckRaker::Exceptions::LanguageNotSupported => ex
|
90
|
+
@hit_count = 0
|
91
|
+
@results = []
|
90
92
|
flash[:error] = ex
|
91
93
|
end
|
92
94
|
|
data/muck-raker.gemspec
CHANGED