SVN commit 971572 by ahartmetz: backport the bugfix part from 952940 in trunk: store a rule to ignore all ignored errors, not only the newly ignored errors. the old incomplete rule would be replaced with a new incomplete rule and this would happen every time the respective site was visited... M +1 -1 tcpslavebase.cpp --- branches/KDE/4.2/kdelibs/kio/kio/tcpslavebase.cpp #971571:971572 @@ -821,7 +821,7 @@ //rule = KSslCertificateRule(d->socket.peerCertificateChain().first(), whatever); rule.setExpiryDateTime(ruleExpiry); - rule.setIgnoredErrors(remainingErrors); + rule.setIgnoredErrors(d->sslErrors); cm->setRule(rule); return ResultOk | ResultOverridden;