[GETBUILDS] Disable MSVC builds filter by default ONLINE-772

This commit is contained in:
Yaroslav Veremenko 2018-05-15 16:08:36 -06:00 committed by Colin Finck
parent a427a02ed4
commit 4324bb55b8
2 changed files with 5 additions and 5 deletions

View File

@ -19,10 +19,10 @@
);
$SUFFIXES = array(
"-x86-gcc-lin-dbg" => "x86 GCC Debug",
"-x86-gcc-lin-rel" => "x86 GCC Release",
"-x86-msvc-win-dbg" => "x86 MSVC Debug",
"-x64-msvc-win-dbg" => "x64 MSVC Debug",
"-x86-gcc-lin-dbg" => array("x86 GCC Debug", TRUE),
"-x86-gcc-lin-rel" => array("x86 GCC Release", TRUE),
"-x86-msvc-win-dbg" => array("x86 MSVC Debug", FALSE),
"-x64-msvc-win-dbg" => array("x64 MSVC Debug", FALSE),
);
$SVN_PREFIX_TRANSLATIONS = array(

View File

@ -104,7 +104,7 @@
<div class="col-sm-3">
<?php
foreach ($SUFFIXES as $k => $v)
printf('<div class="checkbox"><label><input type="checkbox" name="suffixes" id="%s" checked="checked"> %s</label></div>', $k, $v);
printf('<div class="checkbox"><label><input type="checkbox" name="suffixes" id="%s" %s> %s</label></div>', $k, $v[1] == TRUE ? 'checked="checked"' : '', $v[0]);
?>
</div>
</div>