Skip to content

Commit

Permalink
Merge branch 'master-2.24'
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed May 2, 2020
2 parents b27f6ad + 5ba7cdf commit a38bfd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bug_view_inc.php
Expand Up @@ -464,7 +464,7 @@
#

if( ( $t_flags['versions_product_version_show'] && isset( $t_issue['version'] ) ) ||
( $t_flags['versions_product_build_show'] && isset( $t_issue['product_build'] ) ) ) {
( $t_flags['versions_product_build_show'] && isset( $t_issue['build'] ) ) ) {
$t_spacer = 2;

echo '<tr>';
Expand All @@ -478,9 +478,9 @@
}

# Product Build
if( $t_flags['versions_product_build_show'] && isset( $t_issue['product_build'] ) ) {
if( $t_flags['versions_product_build_show'] && isset( $t_issue['build'] ) ) {
echo '<th class="bug-product-build category">', lang_get( 'product_build' ), '</th>';
echo '<td class="bug-product-build">', string_display_line( $t_issue['product_build'] ), '</td>';
echo '<td class="bug-product-build">', string_display_line( $t_issue['build'] ), '</td>';
} else {
$t_spacer += 2;
}
Expand Down

0 comments on commit a38bfd1

Please sign in to comment.