mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged BRANCHES/V2.3 to HEAD:
100726: Merged BRANCHES/V2.2 to BRANCHES/V2.3: 100725: RM-1586 : Add another search for the property in the case of legacy html encoded properties git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@100730 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -134,7 +134,11 @@ public class CustomPropertyDefinitionPut extends BaseCustomPropertyWebScript
|
|||||||
String propId = (String)params.get(PROP_ID);
|
String propId = (String)params.get(PROP_ID);
|
||||||
ParameterCheck.mandatoryString("propId", propId);
|
ParameterCheck.mandatoryString("propId", propId);
|
||||||
|
|
||||||
QName propQName = rmAdminService.getQNameForClientId(URLEncoder.encode(propId));
|
QName propQName = rmAdminService.getQNameForClientId(propId);
|
||||||
|
if (propQName == null)
|
||||||
|
{
|
||||||
|
propQName = rmAdminService.getQNameForClientId(URLEncoder.encode(propId));
|
||||||
|
}
|
||||||
if (propQName == null)
|
if (propQName == null)
|
||||||
{
|
{
|
||||||
throw new WebScriptException(Status.STATUS_NOT_FOUND,
|
throw new WebScriptException(Status.STATUS_NOT_FOUND,
|
||||||
|
Reference in New Issue
Block a user