mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
Add detection for Konqueror
This commit is contained in:
parent
b4b16f76be
commit
720dd30f11
@ -62,6 +62,13 @@
|
||||
$this->BROWSER_AGENT = 'Netscape';
|
||||
}
|
||||
|
||||
elseif (ereg( 'Konqueror/([0-9].[0-9].[0-9]{1,2})',$HTTP_USER_AGENT,$log_version) ||
|
||||
ereg( 'Konqueror/([0-9].[0-9]{1,2})',$HTTP_USER_AGENT,$log_version))
|
||||
{
|
||||
$this->BROWSER_VER=$log_version[1];
|
||||
$this->BROWSER_AGENT='Konqueror';
|
||||
}
|
||||
|
||||
elseif (ereg( 'Mozilla/([0-9].[0-9]{1,2})',$HTTP_USER_AGENT,$log_version))
|
||||
{
|
||||
$this->BROWSER_VER=$log_version[1];
|
||||
|
Loading…
Reference in New Issue
Block a user