feature:2577

Many improvements

git-svn-id: http://piwigo.org/svn/trunk@13234 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
patdenice
2012-02-18 20:26:52 +00:00
parent 4b696df2da
commit 26ed60c972
20 changed files with 185 additions and 56 deletions
+1 -22
View File
@@ -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 );
}