Also have to remove fixed width

This commit is contained in:
digital-gnome 2017-12-07 15:20:54 -05:00
parent 7db790ec7b
commit 19e50e2bde
1 changed files with 5 additions and 2 deletions

View File

@ -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'),