1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Remove stray end anchor tag on the 'Move' link of 'sc_postoptions' which fix associated html validation error.

This commit is contained in:
Arun S. Sekher
2017-05-25 09:27:52 +04:00
parent 4a06e277b0
commit 3016d2e29d

View File

@@ -772,7 +772,7 @@
if($type == 'thread')
{
$url = e107::url('forum', 'move', array('thread_id' => $this->postInfo['post_thread']));
$text .= "<li class='text-right'><a href='" . $url . "'>" . LAN_FORUM_2042 . " " . $tp->toGlyph('move') . "</a></a></li>";
$text .= "<li class='text-right'><a href='" . $url . "'>" . LAN_FORUM_2042 . " " . $tp->toGlyph('move') . "</a></li>";
}
elseif(e_DEVELOPER === true) //TODO
{