CVS commit by johnflux: Fix bug mentioned in 71476. Basically when you select some text and copy to the clipboard, the text/html version of it has the url's sanitized - i.e. the password is stripped out. In the process of converting to a url and back to a string I forgot to htmlized the result, resulting in invalid html. Sorry phantomsdad :) BUG: M +1 -1 dom_elementimpl.cpp 1.208 --- kdelibs/khtml/xml/dom_elementimpl.cpp #1.207:1.208 @@ -685,5 +685,5 @@ DOMString ElementImpl::openTagStartToStr KURL safeURL(getDocument()->completeURL(attribute->value().string())); safeURL.setPass(QString::null); - result += safeURL.url(); + result += safeURL.htmlURL(); } else {