From c6099145f45c3d984e75b9350f59fd3714581ffd Mon Sep 17 00:00:00 2001 From: SJ Date: Tue, 6 Aug 2013 11:35:25 +0200 Subject: [PATCH] mobile detection fix --- webui/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/config.php b/webui/config.php index 099bac98..59fafee6 100644 --- a/webui/config.php +++ b/webui/config.php @@ -237,7 +237,7 @@ require_once 'config-site.php'; if(isset($_SESSION['theme']) && preg_match("/^([a-zA-Z0-9\-\_]+)$/", $_SESSION['theme'])) { $config['THEME'] = $_SESSION['theme']; } -include("/system/helper/detectmobilebrowser.php"); +include("system/helper/detectmobilebrowser.php"); if(MOBILE_DEVICE == 1) { $config['THEME'] = 'mobile'; }