1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 06:38:00 +02:00

Merge pull request #2651 from arunshekher/forum_sc_postoptions_markup_fix

Remove stray end anchor tag on the 'Move' link of 'sc_postoptions'
This commit is contained in:
Cameron
2017-05-25 14:10:29 -07:00
committed by GitHub

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
{