Summary: | Disabling cookies deletes per domain cookie handling settings | ||
---|---|---|---|
Product: | [Applications] konqueror | Reporter: | Anders E. Andersen <andersa> |
Component: | kcookiejar | Assignee: | Konqueror Developers <konq-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 3.4.2 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Anders E. Andersen
2005-11-29 22:13:58 UTC
Confirmed on 3.5 branch r575787 SVN commit 707819 by adawit: - Do not loose the domain-specific cookie policies when cookie support is disabled and re-enabled again. BUG:117302 M +1 -1 kcookiespolicies.cpp --- branches/KDE/3.5/kdebase/kcontrol/kio/kcookiespolicies.cpp #707818:707819 @@ -313,12 +313,12 @@ dlg->cbAutoAcceptSessionCookies->setChecked (sessionCookies); bool cookieExpiration = cfg.readBoolEntry("IgnoreExpirationDate", false); dlg->cbIgnoreCookieExpirationDate->setChecked (cookieExpiration); + updateDomainList(cfg.readListEntry("CookieDomainAdvice")); if (enableCookies) { ignoreCookieExpirationDate( cookieExpiration ); autoAcceptSessionCookies( sessionCookies ); - updateDomainList(cfg.readListEntry("CookieDomainAdvice")); updateButtons(); } |