mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
feature:2577
Many improvements git-svn-id: http://piwigo.org/svn/trunk@13234 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
+1
-22
@@ -192,28 +192,7 @@ if (defined('IN_ADMIN') and IN_ADMIN )
|
||||
}
|
||||
else
|
||||
{ // Classic template
|
||||
$theme = $user['theme'];
|
||||
|
||||
if (!isset($_SESSION['is_mobile']))
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH.'include/mdetect.php');
|
||||
$uagent_obj = new uagent_info();
|
||||
if ($_SESSION['is_mobile'] = $uagent_obj->DetectMobileLong())
|
||||
{
|
||||
$_SESSION['use_mobile_theme'] = !empty($conf['mobile_theme']);
|
||||
}
|
||||
}
|
||||
if ($_SESSION['is_mobile'])
|
||||
{
|
||||
if (isset($_REQUEST['mobile']))
|
||||
{
|
||||
$_SESSION['use_mobile_theme'] = get_boolean($_REQUEST['mobile']);
|
||||
}
|
||||
if ($_SESSION['use_mobile_theme'])
|
||||
{
|
||||
$theme = $conf['mobile_theme'];
|
||||
}
|
||||
}
|
||||
$theme = mobile_theme() ? $conf['mobile_theme'] : $user['theme'];
|
||||
$template = new Template(PHPWG_ROOT_PATH.'themes', $theme );
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user