Skip to content

Commit

Permalink
linting shit
Browse files Browse the repository at this point in the history
  • Loading branch information
Leone25 committed Oct 12, 2023
1 parent a986351 commit 7fb2d95
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public function addUser(User $user): array

/**
* Regenerate token for a user, used for resending email
*
*
* @param int $id User ID
*
*
* @return string New token
*/
public function regenerateToken(int $id): string
Expand All @@ -64,7 +64,7 @@ public function regenerateToken(int $id): string

if (!@$stmt->execute()) {
throw new DatabaseException();
} else if ($this->db->changes() === 0) {
} elseif ($this->db->changes() === 0) {
throw new Exception('User not found');
} else {
return $token;
Expand Down
4 changes: 3 additions & 1 deletion templates/confirm_email.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
echo sprintf(__("Abbiamo ricevuto la tua candidatura per il team WEEE Open, questa è la pagina da cui potrai verificare lo stato della tua domanda: %s"), $link) . "\r\n";
echo __("Se la domanda sarà approvata, riceverai un'email sempre a questo indirizzo con scritto chi contattare per passare al colloquio. Le stesse informazioni saranno visibili anche alla pagina di cui sopra.") . "\r\n";
echo __("Buona fortuna ;)") . "\r\n\r\n";
if (isset($resend) && $resend === true) echo __("Nota: se hai già ricevuto un email come questa, il link sulla precedente email non è più valido. Usa il link sopra per verificare lo stato della tua candidatura.") . "\r\n\r\n";
if (isset($resend) && $resend === true) {
echo __("Nota: se hai già ricevuto un email come questa, il link sulla precedente email non è più valido. Usa il link sopra per verificare lo stato della tua candidatura.") . "\r\n\r\n";
}
echo sprintf(__("Se non hai inviato tu questa candidatura e presumi che questa e-mail ti sia stata recapitata per errore, puoi pure ignorarla. Se il problema persiste, per favore, contattaci al seguente indirizzo e-mail: %s"), WEEEHIRE_EMAIL_FALLBACK) . "\r\n\r\n";
echo __("Il software WEEEHire per conto del team WEEE Open") . "\r\n";
}

0 comments on commit 7fb2d95

Please sign in to comment.