diff --git a/htdocs/public/eventorganization/attendee_register.php b/htdocs/public/eventorganization/attendee_register.php index e78e4134a4a..515436f924a 100644 --- a/htdocs/public/eventorganization/attendee_register.php +++ b/htdocs/public/eventorganization/attendee_register.php @@ -595,13 +595,15 @@ if (!empty($conference->id) && $conference->status==ConferenceOrBooth::STATUS_CO print '
| ' . $langs->trans("Email") . '* | |
| ' . $langs->trans("Email") . '* | |
| ' . $langs->trans("Company"); if (!empty(floatval($project->price_registration))) { - print '*'; + print '*'; } - print ' | '; + print img_picto('', 'company', 'class="pictofixedwidth"'); + print ' | ' . "\n"; // Address print '
| ' . $langs->trans("Address") . ' | ' . "\n"; print ' |
| ' . $langs->trans('Country') . '* | '; + print ' |
| ' . $langs->trans('Country') . '* | '; + print img_picto('', 'country', 'class="pictofixedwidth"'); $country_id = GETPOST('country_id'); if (!$country_id && !empty($conf->global->MEMBER_NEWFORM_FORCECOUNTRYCODE)) { $country_id = getCountry($conf->global->MEMBER_NEWFORM_FORCECOUNTRYCODE, 2, $db, $langs); |