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

jvergara
18.02.2007 a98cdb5308f38952a73dd603e55deb6794c2deb3
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
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/util/HtmlProgressMessageFormatter.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/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);
  }
  /**