use source instead of name in editlistpre form
This commit is contained in:
parent
649990eeef
commit
bf56072f20
|
@ -46,7 +46,7 @@ if ($_SESSION['log']) {
|
||||||
<form name="editlist" method=POST action="editlist.php">
|
<form name="editlist" method=POST action="editlist.php">
|
||||||
<label>Listenname: <input name="newlistname" type="text" placeholder="Listenname" value="' . $lists['name'] . '"/></label>
|
<label>Listenname: <input name="newlistname" type="text" placeholder="Listenname" value="' . $lists['name'] . '"/></label>
|
||||||
<label>Listenadresse: ';
|
<label>Listenadresse: ';
|
||||||
if ($_SESSION['admin']) echo '<input name="newlistsource" type="text" placeholder="Listenadresse" value="' . $lists['name'] . '"/></label>';
|
if ($_SESSION['admin']) echo '<input name="newlistsource" type="text" placeholder="Listenadresse" value="' . $lists['source'] . '"/></label>';
|
||||||
else echo $lists['source'] . '</label> ';
|
else echo $lists['source'] . '</label> ';
|
||||||
echo '<label>Listenbesitzer: <textarea rows="1" cols="50" name="newlistowners">' . $lists['owners'] . '</textarea></label><br>
|
echo '<label>Listenbesitzer: <textarea rows="1" cols="50" name="newlistowners">' . $lists['owners'] . '</textarea></label><br>
|
||||||
<label>Listenempfänger (durch Leerzeichen getrennt):<br><textarea rows="4" cols="50" name="newlistdestinations">';
|
<label>Listenempfänger (durch Leerzeichen getrennt):<br><textarea rows="4" cols="50" name="newlistdestinations">';
|
||||||
|
|
Loading…
Reference in New Issue