remove lib/mobile_detect
This commit is contained in:
parent
e70d42237a
commit
2bd51c48d8
16
index.php
16
index.php
|
@ -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
Loading…
Reference in New Issue