Skip to content

Commit

Permalink
Convert lock topic to post request
Browse files Browse the repository at this point in the history
  • Loading branch information
samerton committed Aug 26, 2021
1 parent 03775d1 commit d36a28a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion custom/templates/DefaultRevamp/forum/view_topic.tpl
Expand Up @@ -61,12 +61,15 @@
<a class="ui small primary button" href="{$FOLLOW_URL}">{$FOLLOW}</a>
{/if}
{if isset($CAN_MODERATE)}
<form action="{$LOCK_URL}" method="post" id="lockPost" style="display: none">
<input type="hidden" value="{$TOKEN}" name="token" />
</form>
<div class="ui top right pointing dropdown small primary button">
<span class="text">{$MOD_ACTIONS}</span>
<i class="dropdown icon"></i>
<div class="menu">
<div class="header">{$MOD_ACTIONS}</div>
<a class="item" href="{$LOCK_URL}">{$LOCK}</a>
<a type="submit" class="item" onclick="document.getElementById('lockPost').submit()">{$LOCK}</a>
<a class="item" href="{$MERGE_URL}">{$MERGE}</a>
<a class="item" data-toggle="modal" data-target="#modal-delete">{$DELETE}</a>
<a class="item" href="{$MOVE_URL}">{$MOVE}</a>
Expand Down
6 changes: 6 additions & 0 deletions modules/Forum/pages/forum/lock.php
Expand Up @@ -28,6 +28,12 @@
die();
}

if (!isset($_POST['token']) || !Token::check($_POST['token'])) {
Session::flash('failure_post', $language->get('general', 'invalid_token'));
Redirect::to(URL::build('/forum/topic/' . $topic_id));
die();
}

$forum_id = $topic[0]->forum_id;

if ($forum->canModerateForum($forum_id, $user->getAllGroupIds())) {
Expand Down

0 comments on commit d36a28a

Please sign in to comment.