admin_data 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,7 +35,6 @@ class AdminData::SearchController < AdminData::BaseController
|
|
35
35
|
|
36
36
|
|
37
37
|
def advance_search
|
38
|
-
debugger
|
39
38
|
@page_title = "Advance search #{@klass.name.underscore}"
|
40
39
|
plugin_dir = AdminData::Config.setting[:plugin_dir]
|
41
40
|
hash = build_advance_search_conditions(@klass, params[:adv_search])
|
@@ -46,7 +45,6 @@ class AdminData::SearchController < AdminData::BaseController
|
|
46
45
|
respond_to do |format|
|
47
46
|
format.html { render }
|
48
47
|
format.js {
|
49
|
-
debugger
|
50
48
|
|
51
49
|
if !hash[:errors].blank?
|
52
50
|
render :file => "#{plugin_dir}/app/views/admin_data/search/search/_errors.html.erb", :locals => {:errors => errors}
|
data/lib/admin_data/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
module AdminData
|
2
|
-
VERSION = '1.0.
|
3
|
-
end
|
2
|
+
VERSION = '1.0.1'
|
3
|
+
end
|