diff --git a/htdocs/public/eventorganization/attendee_register.php b/htdocs/public/eventorganization/attendee_register.php index fd2b7c38b38..90938f1f3cc 100644 --- a/htdocs/public/eventorganization/attendee_register.php +++ b/htdocs/public/eventorganization/attendee_register.php @@ -679,7 +679,10 @@ if (!empty($conference->id) && $conference->status==ConferenceOrBooth::STATUS_CO print '
| ' . $langs->trans("EmailAttendee") . '* | |
| ' . $langs->trans("EmailAttendee") . '* | '; + print img_picto('', 'email', 'class="pictofixedwidth"'); + print ' |
| ' . $langs->trans("Company"); if (!empty(floatval($project->price_registration))) { @@ -688,19 +691,24 @@ if (!empty($conference->id) && $conference->status==ConferenceOrBooth::STATUS_CO print ' | '; print img_picto('', 'company', 'class="pictofixedwidth"'); print ' |
| ' . $langs->trans("EmailCompanyForInvoice") . ' | |
| ' . $langs->trans("Address") . ' | ' . "\n"; - print ' |
| ' . $langs->trans('Zip') . ' / ' . $langs->trans('Town') . ' | '; print $formcompany->select_ziptown(GETPOST('zipcode'), 'zipcode', array('town', 'selectcountry_id', 'state_id'), 6, 1); print ' / '; print $formcompany->select_ziptown(GETPOST('town'), 'town', array('zipcode', 'selectcountry_id', 'state_id'), 0, 1); print ' |
| ' . $langs->trans('Country') . '* | '; print img_picto('', 'country', 'class="pictofixedwidth"'); |