1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Forum: Fixes #1079 - broken 'move' url.

This commit is contained in:
Cameron
2015-06-26 10:26:47 -07:00
parent 1073171387
commit 84485c50da
6 changed files with 31 additions and 9 deletions

View File

@@ -539,7 +539,8 @@ function showmodoptions()
";
if ($type == 'Thread')
{
$ret .= "<a href='" . $e107->url->create('forum/thread/move', array('id' => $postInfo['post_id']))."'>" . IMAGE_admin_move2 . "</a>";
$moveUrl = e107::url('forum','move', array('thread_id'=>$postInfo['post_thread']));
$ret .= "<a href='" . $moveUrl."'>" . IMAGE_admin_move2 . "</a>";
}
else
{