change ean to gln
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 1m17s
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 1m17s
This commit is contained in:
parent
be7c461cbe
commit
9999dc018c
2 changed files with 5 additions and 5 deletions
|
|
@ -56,8 +56,8 @@ bestellformular = true
|
|||
<input type="text" id="zsr_nummer" name="zsr_nummer" required >
|
||||
</div><!-- TODO ZSR Nummer ODER EAN ??? --->
|
||||
<div id="ean-tooltip" data-tooltip="Bitte geben Sie eine gültie EAN- / GLN-Nummer, oder 'beantragt' ein.">
|
||||
<label for="ean_nummer">EAN / GLN-Nr</label>
|
||||
<input type="text" id="ean_nummer" name="ean_nummer" required >
|
||||
<label for="gln_nummer">EAN / GLN-Nr</label>
|
||||
<input type="text" id="gln_nummer" name="gln_nummer" required >
|
||||
</div>
|
||||
<h5>Bitte tragen Sie die Daten einer Kontaktperson ein</h5>
|
||||
<div>
|
||||
|
|
|
|||
|
|
@ -66,10 +66,10 @@ function constructMessage()
|
|||
$message .= ( $lang == "FR" ? "Nr. RCC : " : "ZSR Nummer: ");
|
||||
$message .= filter_input(INPUT_POST, 'zsr_nummer') . "<br/>";
|
||||
}
|
||||
if (isset($_POST['ean_nummer']))
|
||||
if (isset($_POST['gln_nummer']))
|
||||
{
|
||||
$message .= ( $lang == "FR" ? "Nr. EAN/GLN : " : "EAN / GLN-Nr : ");
|
||||
$message .= filter_input(INPUT_POST, 'ean_nummer') . "<br/>";
|
||||
$message .= ( $lang == "FR" ? "Nr. GLN : " : "GLN-Nr : ");
|
||||
$message .= filter_input(INPUT_POST, 'gln_nummer') . "<br/>";
|
||||
}
|
||||
$message .= "</p>";
|
||||
if (isset($organisation))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue