2010-06-06 Stanislas Rolland <typo3@sjbr.ca>
* Follow-up to bug #14360: htmlArea RTE: Toolbar and context menu styling needs adjustments
+ * Fixed bug #12486: RTE does not work with Arora
2010-06-06 Ingo Renner <ingo@typo3.org>
2010-06-06 Stanislas Rolland <typo3@sjbr.ca>
* Follow-up to bug #14360: htmlArea RTE: Toolbar and context menu styling needs adjustments
+ * Fixed bug #12486: RTE does not work with arora
2010-06-05 Stanislas Rolland <typo3@sjbr.ca>
$bInfo['BROWSER']= 'msie';
} elseif (strstr($useragent,'Gecko/')) {
$bInfo['BROWSER']='gecko';
- } elseif (strstr($useragent,'Safari/')) {
+ } elseif (strstr($useragent,'WebKit/')) {
$bInfo['BROWSER']='safari';
} elseif (strstr($useragent,'Mozilla/4')) {
$bInfo['BROWSER']='net';
$bInfo['VERSION'] = doubleval(preg_replace('/^[^0-9]*/','',substr($tmp,4)));
break;
case 'safari':
- $tmp = strstr($useragent,'Safari/');
+ $tmp = strstr($useragent,'WebKit/');
$bInfo['VERSION'] = doubleval(preg_replace('/^[^0-9]*/','',substr($tmp,3)));
break;
case 'opera':