Fixing style errors.

This commit is contained in:
stickler-ci 2021-04-23 15:12:34 +00:00
parent e9b35cf36b
commit 7f9f67e7ef
6 changed files with 25 additions and 27 deletions

View File

@ -250,7 +250,7 @@ if (empty($reshook) && $action == 'add') {
// At this point, we have an attendee. It may not be linked to a thirdparty if we just created it // At this point, we have an attendee. It may not be linked to a thirdparty if we just created it
// If the attendee has already paid // If the attendee has already paid
if($confattendee->status == 1) { if ($confattendee->status == 1) {
$redirection = $dolibarr_main_url_root.'/public/eventorganization/subscriptionok.php?securekey='.dol_encode($conf->global->EVENTORGANIZATION_SECUREKEY, $dolibarr_main_instance_unique_id); $redirection = $dolibarr_main_url_root.'/public/eventorganization/subscriptionok.php?securekey='.dol_encode($conf->global->EVENTORGANIZATION_SECUREKEY, $dolibarr_main_instance_unique_id);
Header("Location: ".$redirection); Header("Location: ".$redirection);
exit; exit;
@ -379,7 +379,6 @@ if (empty($reshook) && $action == 'add') {
if (!empty($conf->global->PAYMENT_SECURITY_TOKEN)) { if (!empty($conf->global->PAYMENT_SECURITY_TOKEN)) {
if (!empty($conf->global->PAYMENT_SECURITY_TOKEN_UNIQUE)) { if (!empty($conf->global->PAYMENT_SECURITY_TOKEN_UNIQUE)) {
$redirection .= '&securekey='.dol_hash($conf->global->PAYMENT_SECURITY_TOKEN . $sourcetouse . $reftouse, 2); // Use the source in the hash to avoid duplicates if the references are identical $redirection .= '&securekey='.dol_hash($conf->global->PAYMENT_SECURITY_TOKEN . $sourcetouse . $reftouse, 2); // Use the source in the hash to avoid duplicates if the references are identical
} else { } else {
$redirection .= '&securekey='.$conf->global->PAYMENT_SECURITY_TOKEN; $redirection .= '&securekey='.$conf->global->PAYMENT_SECURITY_TOKEN;
} }

View File

@ -120,7 +120,6 @@ if ($source == 'conferencesubscription') {
if ($resultinvoice <= 0) { if ($resultinvoice <= 0) {
setEventMessages(null, $invoice->errors, "errors"); setEventMessages(null, $invoice->errors, "errors");
} else { } else {
$invoice->fetchObjectLinked(); $invoice->fetchObjectLinked();
$linkedAttendees = $invoice->linkedObjectsIds['conferenceorboothattendee']; $linkedAttendees = $invoice->linkedObjectsIds['conferenceorboothattendee'];

View File

@ -193,13 +193,13 @@ print "\n";
// Show all action buttons // Show all action buttons
print '<br>'; print '<br>';
// Output introduction text // Output introduction text
if($project->accept_conference_suggestions){ if ($project->accept_conference_suggestions) {
print '<input type="submit" value="'.$langs->trans("SuggestConference").'" id="suggestconference" class="button">'; print '<input type="submit" value="'.$langs->trans("SuggestConference").'" id="suggestconference" class="button">';
print '<br><br>'; print '<br><br>';
} }
print '<input type="submit" value="'.$langs->trans("ViewAndVote").'" id="viewandvote" class="button">'; print '<input type="submit" value="'.$langs->trans("ViewAndVote").'" id="viewandvote" class="button">';
print '<br><br>'; print '<br><br>';
if($project->accept_booth_suggestions){ if ($project->accept_booth_suggestions) {
print '<input type="submit" value="'.$langs->trans("SuggestBooth").'" id="suggestbooth" class="button">'; print '<input type="submit" value="'.$langs->trans("SuggestBooth").'" id="suggestbooth" class="button">';
} }