diff options
Diffstat (limited to '')
-rw-r--r-- | include/derivative_std_params.inc.php | 2 | ||||
-rw-r--r-- | include/page_tail.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/derivative_std_params.inc.php b/include/derivative_std_params.inc.php index 07093e0fc..54122aa94 100644 --- a/include/derivative_std_params.inc.php +++ b/include/derivative_std_params.inc.php @@ -160,7 +160,7 @@ final class ImageStdParams private static function make_default() { self::$watermark = new WatermarkParams(); - self::$type_map[IMG_SQUARE] = new DerivativeParams( SizingParams::square(100,100) ); + self::$type_map[IMG_SQUARE] = new DerivativeParams( SizingParams::square(120,120) ); self::$type_map[IMG_THUMB] = new DerivativeParams( SizingParams::classic(144,144) ); self::$type_map[IMG_SMALL] = new DerivativeParams( SizingParams::classic(240,240) ); self::$type_map[IMG_MEDIUM] = new DerivativeParams( SizingParams::classic(432,432) ); diff --git a/include/page_tail.php b/include/page_tail.php index a24176da5..b150611fd 100644 --- a/include/page_tail.php +++ b/include/page_tail.php @@ -66,11 +66,11 @@ if ($conf['show_gt']) $template->assign('debug', $debug_vars ); //------------------------------------------------------------- mobile version -if ( !empty($conf['mobile_theme']) && get_device() != 'desktop') +if ( !empty($conf['mobile_theme']) && (get_device() != 'desktop' || mobile_theme())) { $template->assign('TOGGLE_MOBILE_THEME_URL', add_url_params( - make_index_url(), + duplicate_index_url(), array('mobile' => mobile_theme() ? 'false' : 'true') ) ); |