aboutsummaryrefslogtreecommitdiffstats
path: root/themes/smartpocket/themeconf.inc.php
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2013-03-22 09:18:08 +0000
committerpatdenice <patdenice@piwigo.org>2013-03-22 09:18:08 +0000
commitf529c8f0cb78d6e1f4d5df7eb8d62ea3370d448b (patch)
tree6f399a498bcb3ee5e9c2f11b592e963c2722a958 /themes/smartpocket/themeconf.inc.php
parent29e640d3d9a9cd02255eb49bccdbe2535de14774 (diff)
Correct image size in smartpocket with GThumb+ activated
git-svn-id: http://piwigo.org/svn/trunk@21779 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/smartpocket/themeconf.inc.php')
-rw-r--r--themes/smartpocket/themeconf.inc.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/themes/smartpocket/themeconf.inc.php b/themes/smartpocket/themeconf.inc.php
index 7a13d9698..3ab554fff 100644
--- a/themes/smartpocket/themeconf.inc.php
+++ b/themes/smartpocket/themeconf.inc.php
@@ -38,22 +38,21 @@ function sp_select_all_categories($selection)
}
// Get better derive parameters for screen size
+$type = IMG_LARGE;
if (!empty($_COOKIE['screen_size']))
{
$screen_size = explode('x', $_COOKIE['screen_size']);
$derivative_params = new ImageStdParams;
$derivative_params->load_from_db();
- $type = IMG_LARGE;
foreach ($derivative_params->get_all_type_map() as $type => $map)
{
if (max($map->sizing->ideal_size) >= max($screen_size) and min($map->sizing->ideal_size) >= min($screen_size))
break;
}
- pwg_set_session_var('sp_picture_deriv', $type);
}
-$this->assign('picture_derivative_params', ImageStdParams::get_by_type(pwg_get_session_var('sp_picture_deriv', IMG_LARGE)));
+$this->assign('picture_derivative_params', ImageStdParams::get_by_type($type));
$this->assign('thumbnail_derivative_params', ImageStdParams::get_by_type(IMG_SQUARE));
?>