From ec4f39e02f7f655a4e401407ae26c87819a67dda Mon Sep 17 00:00:00 2001 From: C Robert Date: Tue, 7 Apr 2009 15:25:59 +0000 Subject: [PATCH] Monotone-Parent: 8f6ae7e406e33ae236010309ff5b5efd3698d719 Monotone-Revision: cc3307154f3db7f06e6e54e701e48d8e3e676c08 Monotone-Author: crobert@inverse.ca Monotone-Date: 2009-04-07T15:25:59 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ UI/Common/UIxPageFrame.m | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4f7bad804..ff1532349 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-04-07 Cyril Robert + + * UI/Common/UIxPageFrame.m (isCompatibleBrowser): Fixed Safari 3 issue, + was only accepting 4+ + 2009-04-06 Ludovic Marcotte * Improved the sogod-wrapper script in order to diff --git a/UI/Common/UIxPageFrame.m b/UI/Common/UIxPageFrame.m index aa4b8508c..a3d568ed0 100644 --- a/UI/Common/UIxPageFrame.m +++ b/UI/Common/UIxPageFrame.m @@ -460,7 +460,7 @@ static NSString *siteFavicon = nil; || ([[cc userAgentType] isEqualToString: @"Mozilla"] && [cc majorVersion] >= 5) || ([[cc userAgentType] isEqualToString: @"Safari"] - && [cc majorVersion] >= 4) + && [cc majorVersion] >= 3) || ([[cc userAgentType] isEqualToString: @"Konqueror"] && [cc majorVersion] >= 4) );