Module: appdb Branch: master Commit: de4223fc56529a47405849264dbae095f093d1cf URL: http://source.winehq.org/git/appdb.git/?a=commit;h=de4223fc56529a47405849264...
Author: Alexander Nicolaysen Sørnes alexsornes@gmail.com Date: Sun Jun 24 16:56:19 2012 +0000
util: Don't treat Opera and Konqueror as unsupported browsers for Xinha
---
include/util.php | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/include/util.php b/include/util.php index fce6642..e0ec4a5 100644 --- a/include/util.php +++ b/include/util.php @@ -696,11 +696,7 @@ function HtmlAreaLoaderScript($aTextareas) case 'never': return; case 'for supported browsers': - if(strstr($_SERVER['HTTP_USER_AGENT'], 'Opera') || - strstr($_SERVER['HTTP_USER_AGENT'], 'Konqueror')) - { - return; - } + // Xinha 0.96.1 tested fine in Opera 11.6 & Konqueror 4.7.2 break; case 'always': break;