IP : 18.219.126.235Hostname : host45.registrar-servers.comKernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
../
var/
softaculous/
crafty/
./
../
sizzle/
../
glpi/
../
igniter/
../
minibb/
setup_options.php/
/
<?php /* This file is part of miniBB. miniBB is free discussion forums/message board software, without any warranty. Check COPYING file for more details. Copyright (C) 2014 Paul Puzyrev. www.minibb.com Latest File Update: 2023-03-22 */
/* determining the mobile device */ $is_mobile=FALSE; $user_agent=(isset($_SERVER['HTTP_USER_AGENT'])?strtolower($_SERVER['HTTP_USER_AGENT']):'');
$is_mobile_test=FALSE;
$is_mobile_exclude=(substr_count($user_agent, 'pad')>0 or substr_count($user_agent, 'tab')>0 or substr_count($user_agent, 'touch')>0);
$is_mobile_browser=(substr_count($user_agent, 'mobile')>0 or substr_count($user_agent, 'android')>0 or substr_count($user_agent, 'phone')>0 or substr_count($user_agent, 'touch')>0);
$is_mobile=(!$is_mobile_exclude and ($is_mobile_test or $is_mobile_browser));
if(isset($_COOKIE[$cookiename.'_mobileswitch']) and $is_mobile) $is_mobile=FALSE; if(isset($_COOKIE[$cookiename.'_mobileswitch']) and $is_mobile_exclude) $is_mobile=TRUE; /* -- determining the mobile device */