Skip to content

Commit

Permalink
Fix: use specific css style instead, this causes a shift problem
Browse files Browse the repository at this point in the history
  • Loading branch information
hregis committed Sep 28, 2014
1 parent 0997a79 commit f527602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/core/class/html.form.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -2830,8 +2830,8 @@ function formconfirm($page, $title, $question, $action, $formquestion='', $selec
}
else if ($input['type'] == 'select')
{
$more.='<tr><td valign="top" style="padding: 4px !important;">';
if (! empty($input['label'])) $more.=$input['label'].'</td><td valign="top" colspan="2" align="left" style="padding: 4px !important;">';
$more.='<tr><td valign="top">';
if (! empty($input['label'])) $more.=$input['label'].'</td><td valign="top" colspan="2" align="left">';
$more.=$this->selectarray($input['name'],$input['values'],$input['default'],1);
$more.='</td></tr>'."\n";
}
Expand Down

0 comments on commit f527602

Please sign in to comment.