Missing error message "Please change your current password before continuing"
search cancel

Missing error message "Please change your current password before continuing"

book

Article ID: 366900

calendar_today

Updated On:

Products

CA Identity Manager

Issue/Introduction

No error message is displayed on the password reset screen.  This is working on 14.3

Environment

Identity Manager 14.4/14.5

Cause

There is a syntax change between task_messages.jsp on 14.3 and 14.4/14.5

Resolution

under $JBOSS_HOME/standalone/deployments/iam_im.ear/user_console.war/app/page modified task_messages.jsp

From

<td style="white-space:nowrap" class="<%= labelClass %>">
                <imh:message key="<%= key %>" />:
            </td>
   
            <%if ("".equals(messageClass)) {%>
                <%if ( !(switch_status.equalsIgnoreCase("false"))) {%>
    <td>
                    <%= tabName %>
                </td>
    <%} %>
                <td>
                    <%= HtmlUtil.escape(error.getMessage()) %>

 

To

   <td style="white-space:nowrap" class="<%= labelClass %>">
                <imh:message key="<%= key %>" />:
            </td>
            <%if ("".equals(messageClass)) {%>
                <td>
                    <%= HtmlUtil.escape(tabName) %>
                </td>
                <td>
                    <%= HtmlUtil.escape(error.getMessage()) %>
                </td>