remove lib/mobile_detect

This commit is contained in:
Andrew Dolgov 2018-12-26 09:07:58 +03:00
parent e70d42237a
commit 2bd51c48d8
2 changed files with 0 additions and 1474 deletions

View File

@ -26,25 +26,9 @@
require_once "version.php";
require_once "config.php";
require_once "db-prefs.php";
require_once "lib/Mobile_Detect.php";
$mobile = new Mobile_Detect();
if (!init_plugins()) return;
if (!$_REQUEST['mobile']) {
if ($mobile->isTablet() && PluginHost::getInstance()->get_plugin("digest")) {
header('Location: backend.php?op=digest');
exit;
} else if ($mobile->isMobile() && PluginHost::getInstance()->get_plugin("mobile")) {
header('Location: backend.php?op=mobile');
exit;
} else if ($mobile->isMobile() && PluginHost::getInstance()->get_plugin("digest")) {
header('Location: backend.php?op=digest');
exit;
}
}
login_sequence();
header('Content-Type: text/html; charset=utf-8');

File diff suppressed because one or more lines are too long