1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-09-30 15:59:05 +00:00

Merge remote branch 'origin'

This commit is contained in:
Maxime Sinclair 2011-02-18 15:45:05 +01:00
commit b8a37037ee

View File

@ -14,7 +14,10 @@ if (encodedAttribute != null) {
}
}
Object decodedAttribute = request.getAttribute("net.sourceforge.plantuml.servlet.decoded");
if (decodedAttribute != null) {
if (decodedAttribute == null) {
umltext = "Bob -> Alice : hello";
imgurl = host + contextRoot + "/img/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000";
} else {
umltext = decodedAttribute.toString();
}
%>