In /magnoliaAuthor.war/templates/samples/paragraphs/link.jsp
there is a code like this (line 28):
------------------------------
if (html.indexOf("://")==-1) {
html.append("http://");
}
------------------------------
change it to
------------------------------
if (link.indexOf("://") < 0) {
html.append("http://");
}
------------------------------
It's so lazy to register in JIRA... :)
I'll appreciate if you'll post this for me
----------------------------------------------------------------
for list details see
http://www.magnolia.info/en/magnolia/developer.html
----------------------------------------------------------------