From f529c8f0cb78d6e1f4d5df7eb8d62ea3370d448b Mon Sep 17 00:00:00 2001 From: patdenice Date: Fri, 22 Mar 2013 09:18:08 +0000 Subject: Correct image size in smartpocket with GThumb+ activated git-svn-id: http://piwigo.org/svn/trunk@21779 68402e56-0260-453c-a942-63ccdbb3a9ee --- themes/smartpocket/themeconf.inc.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'themes/smartpocket') 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)); ?> -- cgit v1.2.3