From 19e50e2bde92ff3d70c548e9795e2e9e4ef02de4 Mon Sep 17 00:00:00 2001 From: digital-gnome <31593470+digital-gnome@users.noreply.github.com> Date: Thu, 7 Dec 2017 15:20:54 -0500 Subject: [PATCH] Also have to remove fixed width --- web/skins/classic/includes/config.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/web/skins/classic/includes/config.php b/web/skins/classic/includes/config.php index b5829426d..2eded5690 100644 --- a/web/skins/classic/includes/config.php +++ b/web/skins/classic/includes/config.php @@ -45,8 +45,11 @@ $scales = array( '12.5' => '1/8x', ); -if (isset($_REQUEST['view']) && ($_REQUEST['view'] == 'montage')) - unset($scales['auto']); //Remove auto if we aren't using event view +if (isset($_REQUEST['view']) && ($_REQUEST['view'] == 'montage')) { + unset($scales['auto']); //Remove auto on montage, use everywhere else +} else { + unset($scales['']); //Remove fixed on everything but montage +} $bandwidth_options = array( 'high' => translate('High'),