Maybe you can help me with this issue with the same extension SEO URL Extension
viewtopic.php?f=10&p=14333#p14333


Lookrogerio24 wrote: 22 Jan 2017, 18:48 Thanks very much work with this code
function ua_get_filename($name, $folder)
{
if (substr($name, 0, 11) == 'unknown')
return generate_board_url() . '/ext/dmzx/browsericon/images/user_agent/unknown.png';
$name = strtolower($name);
$name = str_replace(' ', '', $name); // remove spaces
$name = preg_replace('/[^a-z0-9_]/', '', $name); // remove special characters
return generate_board_url() . '/ext/dmzx/browsericon/images/user_agent/'.$folder.'/'.$name.'.png';
}











Sniper_E wrote: 28 Jan 2018, 04:07 Just a test message to see if it works with Firefox Nightly 64 Bits ...

Android is linux Opera is Chrome based Edge is shit so yeah its working as its ment too.german-german wrote: 12 Dec 2017, 21:54 Hello
I love this ext
Would be nice an update
E.g.
-Android showing as Linux
-Opera showing as Chrome
-Edge showing as Spartan
etc
Picture-Opera-Android
![]()

Code: Select all
// Detect IE version
if ($browser == 'Trident')
{
$browser = 'Internet Explorer';
$browser_version = substr($useragent, strpos($useragent, 'rv:')+3,2);
}

