Browse Source

Cannot "move" a thread to the same board.

pull/40/head
Savetheinternet 13 years ago
parent
commit
84c181e692
  1. 5
      mod.php

5
mod.php

@ -2183,6 +2183,9 @@
$targetBoard = $_POST['board']; $targetBoard = $_POST['board'];
$shadow = isset($_POST['shadow']); $shadow = isset($_POST['shadow']);
if($targetBoard == $boardName)
error("Target and source board are the same.");
// copy() if leaving a shadow thread behind. otherwise, rename(). // copy() if leaving a shadow thread behind. otherwise, rename().
$clone = $shadow ? 'copy' : 'rename'; $clone = $shadow ? 'copy' : 'rename';
@ -2300,6 +2303,8 @@
$__boards = ''; $__boards = '';
foreach($boards as &$_board) { foreach($boards as &$_board) {
if($_board['uri'] == $board['uri'])
continue;
$__boards .= '<li>' . $__boards .= '<li>' .
'<input type="radio" name="board" id="board_' . $_board['uri'] . '" value="' . $_board['uri'] . '">' . '<input type="radio" name="board" id="board_' . $_board['uri'] . '" value="' . $_board['uri'] . '">' .
'<label style="display:inline" for="board_' . $_board['uri'] . '"> ' . '<label style="display:inline" for="board_' . $_board['uri'] . '"> ' .

Loading…
Cancel
Save