Skip to content

Commit

Permalink
Fix UI of update product build page
Browse files Browse the repository at this point in the history
Fixes #23753
  • Loading branch information
atrol authored and vboctor committed Dec 30, 2017
1 parent 09fe2fb commit e8114ad
Showing 1 changed file with 9 additions and 21 deletions.
30 changes: 9 additions & 21 deletions bug_actiongroup_update_product_build_inc.php
Expand Up @@ -44,10 +44,7 @@
* @return void
*/
function action_update_product_build_print_title() {
echo '<tr>';
echo '<td class="bold" colspan="2">';
echo lang_get( 'product_build' );
echo '</td></tr>';
echo lang_get( 'actiongroup_menu_update_product_build' );
}

/**
Expand All @@ -59,23 +56,14 @@ function action_update_product_build_print_title() {
*/
function action_update_product_build_print_fields() {
?>
<tbody>
<tr>
<th class="category">
<?php echo lang_get( 'product_build' ); ?>
</th>
<td>
<input type="text" name="build" class="input-sm" size="32" maxlength="32" />
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2" class="center">
<input type="submit" class="button" value="<?php echo lang_get( 'actiongroup_menu_update_product_build' ); ?>" />
</td>
</tr>
</tfoot>
<tr>
<th class="category">
<?php echo lang_get( 'product_build' ); ?>
</th>
<td>
<input type="text" name="build" class="input-sm" size="32" maxlength="32" />
</td>
</tr>
<?php
}

Expand Down

0 comments on commit e8114ad

Please sign in to comment.