Skip to content

Commit 28c2414

Browse files
NicolasEYSSERICSilverYoCha
authored andcommitted
fixing bug #5097
regression due to usage of strict comparison (=== and !==)
1 parent 5f1ed26 commit 28c2414

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

kmelia/kmelia-war/src/main/webapp/kmelia/jsp/oneLevel.jsp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ String httpServerBase = GeneralPropertiesManager.getString("httpServerBase", m_s
110110
mode: 'map'
111111
});
112112
113-
displayTopicContent(<%=id%>);
113+
displayTopicContent('<%=id%>');
114114
115115
<% if (settings.getBoolean("DisplayDnDOnLoad", false)) { %>
116116
showDnD();
@@ -350,8 +350,6 @@ function displayTopicContent(id) {
350350
351351
//display topic rich description
352352
displayTopicDescription(id);
353-
354-
// location.href = location.href + "#pubList";
355353
}
356354
357355
function displaySubTopics(id) {
@@ -454,7 +452,7 @@ function getString(key) {
454452
</tr>
455453
<% } %>
456454
<tr>
457-
<td colspan="2">( <img border="0" alt="mandatory" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5"/> : <fmt:message key="GML.requiredField"/> )</td>
455+
<td colspan="2"><img border="0" alt="mandatory" src="<c:out value="${mandatoryFieldUrl}" />" width="5" height="5"/> : <fmt:message key="GML.requiredField"/></td>
458456
</tr>
459457
</table>
460458
</form>

0 commit comments

Comments
 (0)