update
This commit is contained in:
@@ -46,7 +46,6 @@
|
||||
<td>Tytuł/stop. naukowy:{$obj->getDegree()}</br>
|
||||
Stanowisko: {$obj->getPosition()}</br>
|
||||
Telefon: {$obj->getPhone()}</br>
|
||||
Fax: {$obj->getFax()}</br>
|
||||
Email: {$obj->getEmail()}</br></td>
|
||||
<td >Instytucja: {$obj->getInstitution()}</br>
|
||||
Ulica i numer: {$obj->getAddress()}</br>
|
||||
|
||||
@@ -33,7 +33,6 @@ urlStatic = '{$urlStatic}';
|
||||
Tytuł/stop. naukowy:{$objParticipant->getDegree()}</br>
|
||||
Stanowisko: {$objParticipant->getPosition()|default:$registrationMissing}</br>
|
||||
Telefon: {$objParticipant->getPhone()}</br>
|
||||
Fax: {$objParticipant->getFax()|default:$registrationMissing}</br>
|
||||
Email: {$objParticipant->getEmail()}</br>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -355,7 +355,7 @@ class FrontController {
|
||||
private function GenerateTitle() {
|
||||
$headers = Registry::Get('headers');
|
||||
//Utils::ArrayDisplay($headers);
|
||||
$t = $headers['title'];
|
||||
$t = isset($headers['title']) && is_array($headers['title']) ? $headers['title'] : [];
|
||||
if(count($t)>1) {
|
||||
$title = implode($this->titleDelimiter, $t);
|
||||
} else if (count($t) == 1) {
|
||||
|
||||
@@ -42,10 +42,6 @@
|
||||
<div class="label">{translate word='Telefon'}:</div>
|
||||
<div class="value">{formField name="phone" type="text" errorClass="warning"}</div>
|
||||
</div>
|
||||
<div class="entry">
|
||||
<div class="label">{translate word='Fax'}:</div>
|
||||
<div class="value">{formField name="fax" type="text" errorClass="warning"}</div>
|
||||
</div>
|
||||
<div class="entry">
|
||||
<div class="label">{translate word='email'}:</div>
|
||||
<div class="value">{formField name="email" type="text" errorClass="warning"}</div>
|
||||
@@ -220,6 +216,7 @@
|
||||
$('#participation_option').val('full');
|
||||
$('#one-day-lodging-days').hide();
|
||||
$('#one-day-no-lodging-days').hide();
|
||||
$('#conference_1').hide();
|
||||
|
||||
if (selectedId === 'conference_fee_1_lodging') {
|
||||
$('#participation_option').val('one_day_lodging');
|
||||
@@ -229,6 +226,8 @@
|
||||
if (selectedId === 'conference_fee_1') {
|
||||
$('#participation_option').val('one_day_no_lodging');
|
||||
$('#one-day-no-lodging-days').css('display', 'flex');
|
||||
$('#price_plus_room').prop('checked', false);
|
||||
$('#price_plus_person').prop('checked', false);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user