Feature #763
Aliases list
| Status: | Closed | Start: | 08/31/2009 | |
| Priority: | Normal | Due date: | ||
| Assigned to: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | 2.3 | |||
Description
Add tag link to the name of the alias
History
Updated by Sein Kraft 171 days ago
$h_alias = html_escape($old);
$h_old = "<a href='".make_link("post/list/".url_escape($old)."/1")."'>".html_escape($old)."</a>";
$h_new = "<a href='".make_link("post/list/".url_escape($new)."/1")."'>".html_escape($new)."</a>";
$oe = ($n++ % 2 == 0) ? "even" : "odd";
$h_aliases .= "<tr class='$oe'><td>$h_old</td><td>$h_new</td>";
if($is_admin) {
$h_aliases .= "
<td>
<form action='".make_link("alias/remove")."' method='POST'>
<input type='hidden' name='oldtag' value='$h_alias'>
<input type='submit' value='Remove'>
</form>
</td>
";