diff -r c63de4af553d -r cb5489f9b734 Helpviewer/UrlBar/UrlBar.py --- a/Helpviewer/UrlBar/UrlBar.py Wed Jan 16 19:43:50 2013 +0100 +++ b/Helpviewer/UrlBar/UrlBar.py Wed Jan 16 19:56:34 2013 +0100 @@ -180,19 +180,18 @@ sslInfo = self.__browser.page().getSslInfo() if sslInfo is not None: if qVersion() >= "5.0.0": - org = Utilities.html_encode(Utilities.decodeString( - ", ".join(sslInfo.subjectInfo(QSslCertificate.Organization)))) + org = Utilities.decodeString( + ", ".join(sslInfo.subjectInfo(QSslCertificate.Organization))) else: - org = Utilities.html_encode(Utilities.decodeString( - sslInfo.subjectInfo(QSslCertificate.Organization))) + org = Utilities.decodeString( + sslInfo.subjectInfo(QSslCertificate.Organization)) if org == "": if qVersion() >= "5.0.0": - cn = Utilities.html_encode(Utilities.decodeString( - ", ".join( - sslInfo.subjectInfo(QSslCertificate.CommonName)))) + cn = Utilities.decodeString(", ".join( + sslInfo.subjectInfo(QSslCertificate.CommonName))) else: - cn = Utilities.html_encode(Utilities.decodeString( - sslInfo.subjectInfo(QSslCertificate.CommonName))) + cn = Utilities.decodeString( + sslInfo.subjectInfo(QSslCertificate.CommonName)) if cn != "": org = cn.split(".", 1)[1] if org == "":