link to target of alias
This commit is contained in:
parent
6f64055096
commit
ac85a520d7
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class AliasEditorTheme extends Themelet {
|
|||
$n = 0;
|
||||
foreach($aliases as $old => $new) {
|
||||
$h_old = html_escape($old);
|
||||
$h_new = html_escape($new);
|
||||
$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>";
|
||||
|
|
Reference in a new issue