update phpdoc and remove unneeded tags
Dieser Commit ist enthalten in:
Ursprung
5888026236
Commit
0be23bcd33
2 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen
|
@ -2,6 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* Module cl-contactform input
|
* Module cl-contactform input
|
||||||
*
|
*
|
||||||
|
* @package module/cl_contactform
|
||||||
* @author Ortwin Pinke <info@php-backoffice.de>
|
* @author Ortwin Pinke <info@php-backoffice.de>
|
||||||
*
|
*
|
||||||
* based on w3concepts.form.v1 from Andreas Kummer (2004-08-20)
|
* based on w3concepts.form.v1 from Andreas Kummer (2004-08-20)
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* Module cl-contactform output
|
* Module cl-contactform output
|
||||||
*
|
*
|
||||||
|
* @package module/cl_contactform
|
||||||
* @author Ortwin Pinke <info@php-backoffice.de>
|
* @author Ortwin Pinke <info@php-backoffice.de>
|
||||||
*
|
*
|
||||||
* based on w3concepts.form.v1 from Andreas Kummer (2004-08-20)
|
* based on w3concepts.form.v1 from Andreas Kummer (2004-08-20)
|
||||||
|
@ -147,7 +148,7 @@ class w3form
|
||||||
|
|
||||||
public function formOutput($sent = false): void
|
public function formOutput($sent = false): void
|
||||||
{
|
{
|
||||||
echo '<div class="textItem secondItem"><form action="" method="POST" class="form-horizontal">';
|
echo '<form action="" method="post" class="form-horizontal">';
|
||||||
echo '<input type="hidden" name="sent" value="true" />';
|
echo '<input type="hidden" name="sent" value="true" />';
|
||||||
$form = $this->form['form'];
|
$form = $this->form['form'];
|
||||||
$formData = $this->formInterpretation($form);
|
$formData = $this->formInterpretation($form);
|
||||||
|
@ -160,8 +161,7 @@ class w3form
|
||||||
echo $item;
|
echo $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo '<input type="submit" value="submit">';
|
echo '</form>';
|
||||||
echo '</form></div>';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function formField($attribute, $sent): void
|
public function formField($attribute, $sent): void
|
||||||
|
|
Laden …
Tabelle hinzufügen
In neuem Issue referenzieren