2022-08-18 14:01:52 +02:00
|
|
|
<div id="edit_form">
|
|
|
|
<form name="edit_alias" method="post">
|
|
|
|
<table>
|
|
|
|
<tr>
|
2022-09-03 11:30:40 +02:00
|
|
|
<td colspan="3"><h3><?php print $LANG['Edit_alias_welcome']; ?></h3></td>
|
2022-08-18 14:01:52 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-09-03 11:30:40 +02:00
|
|
|
<td><?php print $LANG['Edit_alias_address'] . ":"; ?></td>
|
2022-08-18 14:01:52 +02:00
|
|
|
<td><?php print $fAddress; ?></td>
|
|
|
|
<td> </td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-09-03 11:30:40 +02:00
|
|
|
<td><?php print $LANG['Edit_alias_goto'] . ":"; ?></td>
|
2022-08-18 14:01:52 +02:00
|
|
|
<td>
|
|
|
|
<textarea class="flat" rows="10" cols="60" name="fGoto">
|
|
|
|
<?php
|
|
|
|
$array = preg_split('/,/', $tGoto);
|
|
|
|
for ($i = 0 ; $i < count($array) ; $i++) {
|
|
|
|
if (empty($array[$i])) continue;
|
|
|
|
print "$array[$i]\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</textarea>
|
|
|
|
</td>
|
|
|
|
<td> </td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-09-03 11:30:40 +02:00
|
|
|
<td colspan="3" class="hlp_center"><input class="button" type="submit" name="submit" value="<?php print $LANG['Edit_alias_button']; ?>" /></td>
|
2022-08-18 14:01:52 +02:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="3" class="standout"><?php print $tMessage; ?></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
</div>
|