From f4a4366b3561cab4113f0abee4a062cae67b17e8 Mon Sep 17 00:00:00 2001 From: Julien Lancelot Date: Mon, 21 Jan 2013 10:16:37 +0100 Subject: [PATCH] SONAR-3884 Fix compatibility with MsSQL --- .../src/main/webapp/WEB-INF/app/controllers/roles_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/roles_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/roles_controller.rb index 3a674749987..4c7f2847472 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/roles_controller.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/roles_controller.rb @@ -57,7 +57,7 @@ class RolesController < ApplicationController :include => ['user_roles','group_roles'], :joins => joins, :conditions => [conditions_sql, conditions_values], - :order => 'resource_index_key', + :order => 'resource_index.kee', :offset => @pagination.offset, :limit => @pagination.limit) @pagination.count=Project.count( -- 2.39.5