Fixes ALF-10615: Channel names must be in correct case in Social Publishing UI

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@31169 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Brian Remmington
2011-10-12 14:20:36 +00:00
parent 1946c58b5c
commit 86dc591915

View File

@@ -143,8 +143,7 @@ public class PublishingModelBuilder implements PublishingWebScriptConstants
{ {
Map<String, Object> model = new HashMap<String, Object>(); Map<String, Object> model = new HashMap<String, Object>();
model.put(ID, type.getId()); model.put(ID, type.getId());
//TODO Localize the title. model.put(TITLE, type.getTitle());
model.put(TITLE, type.getId());
model.put(URL, getUrl(type)); model.put(URL, getUrl(type));
model.put(CHANNEL_NODE_TYPE, type.getChannelNodeType().toString()); model.put(CHANNEL_NODE_TYPE, type.getChannelNodeType().toString());