Browse Source

Can't move threads when there's only one board

pull/40/head
Savetheinternet 13 years ago
parent
commit
9e17fc2261
  1. 4
      mod.php

4
mod.php

@ -2300,7 +2300,9 @@
;
$boards = listBoards();
if(count($boards) <= 1)
error('No board to move to; there is only one.');
$__boards = '';
foreach($boards as &$_board) {
if($_board['uri'] == $board['uri'])

Loading…
Cancel
Save