mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
18.02.2007 84507abb1614be9588ebf8abf57271be427a6cf4
Fix for issue 2127 (Show Exception details in Graphical interfaces is broken).

The code was returning the raw version of the Message object that was being passed as parameter instead of the modified String.
1 files modified
2 ■■■ changed files
opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java 2 ●●● patch | view | raw | blame | history
opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java
@@ -393,7 +393,7 @@
          lastTextStr.substring(0, index) + newUrlText
              + lastTextStr.substring(index + urlText.length());
    }
    return Message.raw(lastText);
    return Message.raw(lastTextStr);
  }
  /**