From 45c653d990dfe9a204531c7b618af368a311f68f Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Fri, 3 Sep 2010 19:20:02 +0000 Subject: [PATCH] Removed the browser limitation for Opera. We don't do any version check numbers - use at your own risk\! Monotone-Parent: 8cb90e9b9131045b60db27358a0651385c689a42 Monotone-Revision: 1a442265f5943bf4d60fcf33caf909bbff76bd38 Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2010-09-03T19:20:02 Monotone-Branch: ca.inverse.sogo --- UI/Common/UIxPageFrame.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UI/Common/UIxPageFrame.m b/UI/Common/UIxPageFrame.m index ab9ac4947..e6476a6b9 100644 --- a/UI/Common/UIxPageFrame.m +++ b/UI/Common/UIxPageFrame.m @@ -546,7 +546,7 @@ cc = [[context request] clientCapabilities]; //NSLog(@"Browser = %@", [cc description]); -// NSLog(@"User agent = %@", [cc userAgent]); + //NSLog(@"User agent = %@", [cc userAgent]); //NSLog(@"Browser major version = %i", [cc majorVersion]); return (([[cc userAgentType] isEqualToString: @"IE"] @@ -557,6 +557,7 @@ && [cc majorVersion] >= 3) || ([[cc userAgentType] isEqualToString: @"Konqueror"] && [cc majorVersion] >= 4) + || [[cc userAgentType] isEqualToString: @"Opera"] ); }