From dcbca48831c592e33e0041f7fb6d458640983cea Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Wed, 16 Dec 2009 12:36:40 +0100 Subject: ephy-web-view: do not auto-fill passwords when using a private profile --- embed/ephy-web-view.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index a0a7ac332..a4dceb8f5 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -1650,10 +1650,10 @@ load_status_cb (WebKitWebView *web_view, WebKitLoadStatus status = webkit_web_view_get_load_status (web_view); if (status == WEBKIT_LOAD_FINISHED) { - if (!eel_gconf_get_boolean (CONF_PRIVACY_REMEMBER_PASSWORDS)) - return; + if (ephy_has_private_profile () == FALSE && + eel_gconf_get_boolean (CONF_PRIVACY_REMEMBER_PASSWORDS)) + _ephy_web_view_hook_into_forms (EPHY_WEB_VIEW (web_view)); - _ephy_web_view_hook_into_forms (EPHY_WEB_VIEW (web_view)); _ephy_web_view_hook_into_links (EPHY_WEB_VIEW (web_view)); } } -- cgit v1.2.3