Error with editing metadata in IE
Oleg Barmin <[email protected]>
| Newsgroups | gmane.comp.cms.lenya.user |
|---|---|
| Message-ID | <[email protected]> |
Saving of metadata functionality is broken in IE. In Firefox you can save a modified metadata by clicking outside of the inputText that was modified. In IE, such a capability is not available.
Buggy file: /src/modules-core/sitemanagement/resources/javascript/metadata.js
Fix for this error:
@@ -27,7 +27,7 @@
namespace: namespace,
element: element,
oldValue: dojo.byId("oldValue_" + id).value,
- value: dojo.byId("input_" + id).value,
+ value: dojo.byId("input_" + id).value
},
method: "post",
encoding: "utf-8",