diff -r 4884d821863a -r f2a30f704798 vendor/plugins/redmine_tags/lib/redmine_tags/patches/projects_controller_patch.rb
--- a/vendor/plugins/redmine_tags/lib/redmine_tags/patches/projects_controller_patch.rb
+++ b/vendor/plugins/redmine_tags/lib/redmine_tags/patches/projects_controller_patch.rb
@@ -34,6 +34,7 @@
           sort_update %w(name lft created_on updated_on)
           @limit = per_page_option
           @project_count = Project.visible_roots.find(@projects).count
+
           @project_pages = ActionController::Pagination::Paginator.new self, @project_count, @limit, params['page']
           @offset ||= @project_pages.current.offset
         end
@@ -120,9 +121,9 @@
           end
 
           if  @question == ""
-            @projects = Project.visible
+            @projects = Project.visible_roots
           else
-            @projects = Project.visible.search_by_question(@question)
+            @projects = Project.visible_roots.find(Project.visible.search_by_question(@question))
           end
   
           unless @tag_list.empty?
@@ -132,7 +133,7 @@
           
           @projects = @projects.collect{ |project| project.root }
           @projects = @projects.uniq
-
+                    
         end
       end
     end
