Fixed: Avoid wrapping of help text
This commit is contained in:
parent
0b766b1f47
commit
d9e5a597e4
@ -789,10 +789,11 @@ else
|
|||||||
print '</label>';
|
print '</label>';
|
||||||
print ' ';
|
print ' ';
|
||||||
print '<label for="radioprivate">';
|
print '<label for="radioprivate">';
|
||||||
print '<input type="radio" id="radioprivate" class="flat" name="private" value="1"'.($private?' checked="checked"':'').'>';
|
$text ='<input type="radio" id="radioprivate" class="flat" name="private" value="1"'.($private?' checked="checked"':'').'>';
|
||||||
print ' ';
|
$text.=' ';
|
||||||
print $langs->trans("Individual");
|
$text.= $langs->trans("Individual");
|
||||||
print '<div class="hideonsmartphone">('.$langs->trans("ToCreateContactWithSameName").')</div>';
|
$htmltext=$langs->trans("ToCreateContactWithSameName");
|
||||||
|
print $form->textwithpicto($text, $htmltext, 1, 'help', '', 0, 3);
|
||||||
print '</label>';
|
print '</label>';
|
||||||
print '</div>';
|
print '</div>';
|
||||||
print "<br>\n";
|
print "<br>\n";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user