trim href rendered by skin to cut newline and space chars

This commit is contained in:
hns 2001-07-26 17:59:49 +00:00
parent dbee94cdd4
commit cb6d350588

View file

@ -1016,7 +1016,7 @@ public class HopExtension {
ESObject param = new ObjectPrototype (null, reval.evaluator); ESObject param = new ObjectPrototype (null, reval.evaluator);
param.putProperty ("path", new ESString (path), "path".hashCode ()); param.putProperty ("path", new ESString (path), "path".hashCode ());
skin.render (reval, obj, param); skin.render (reval, obj, param);
return new ESString (reval.res.popStringBuffer ()); return new ESString (reval.res.popStringBuffer ().trim ());
} }
} }