Commit 68f2511abced762e47efefd425e3652e87f17b82
1 parent
af25f7a4
Exists in
master
and in
29 other branches
Fix organization status management
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/controllers/admin/admin_panel_controller.rb
... | ... | @@ -87,6 +87,6 @@ class AdminPanelController < AdminController |
87 | 87 | scope = scope.order('name ASC') |
88 | 88 | |
89 | 89 | @q = params[:q] |
90 | - @collection = find_by_contents(:organizations, scope, @q, {:per_page => 10, :page => params[:npage]})[:results] | |
90 | + @collection = find_by_contents(:organizations, environment, scope, @q, {:per_page => 10, :page => params[:npage]})[:results] | |
91 | 91 | end |
92 | 92 | end | ... | ... |