Changeset 28612 for org.nuxeo.ecm.platform/trunk/nuxeo-platform-ui-web/src/main/java/org/nuxeo/ecm/platform/ui/web/tag/handler/DocumentLinkTagHandler.java
- Timestamp:
- 01/09/08 18:40:16 (11 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
org.nuxeo.ecm.platform/trunk/nuxeo-platform-ui-web/src/main/java/org/nuxeo/ecm/platform/ui/web/tag/handler/DocumentLinkTagHandler.java
r22327 r28612 56 56 } 57 57 58 @Override 58 59 protected MetaRuleset createMetaRuleset(Class type) { 59 60 // expected created tag is an html command link … … 67 68 } 68 69 69 @Override70 70 /** 71 71 * Sets action after component has been created. 72 72 * 73 73 */ 74 @Override 74 75 protected void onComponentCreated(FaceletContext ctx, UIComponent c, 75 76 UIComponent parent) { … … 112 113 viewName = viewName.substring(2, viewName.length() - 1); 113 114 } else { 114 viewName = "\"" + viewName + "\"";115 viewName = '\"' + viewName + '\"'; 115 116 } 116 117 }
