From: Fabrice Bellingard Date: Wed, 30 Jan 2013 14:12:58 +0000 (+0100) Subject: SONAR-3959 Fix issue on PropertiesDao X-Git-Tag: 3.5~317 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1cba104a927dbbe369fa8bcde703e40224675e63;p=sonarqube.git SONAR-3959 Fix issue on PropertiesDao --- diff --git a/sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml b/sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml index d8df028f0f7..90d51ff3528 100644 --- a/sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml +++ b/sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml @@ -14,10 +14,10 @@ FROM properties P, users U WHERE P.user_id = U.id AND P.prop_key = #{notifKey} AND P.text_value = 'true' - AND p.resource_id is null + AND P.resource_id is null - AND p.resource_id = #{rId} + AND P.resource_id = #{rId}