|
@@ 676-684 (lines=9) @@
|
| 673 |
|
document.getElementById("board_theme_div").style.display = redirectEnabled ? "none" : ""; |
| 674 |
|
document.getElementById("count_posts_div").style.display = redirectEnabled ? "none" : "";'; |
| 675 |
|
|
| 676 |
|
if (!$context['board']['topics'] && empty($context['board']['is_recycle'])) |
| 677 |
|
{ |
| 678 |
|
echo ' |
| 679 |
|
document.getElementById("redirect_address_div").style.display = redirectEnabled ? "" : "none";'; |
| 680 |
|
|
| 681 |
|
if ($context['board']['redirect']) |
| 682 |
|
echo ' |
| 683 |
|
document.getElementById("reset_redirect_div").style.display = redirectEnabled ? "" : "none";'; |
| 684 |
|
} |
| 685 |
|
|
| 686 |
|
// Include any JavaScript added by mods using the 'integrate_edit_board' hook. |
| 687 |
|
if (!empty($context['custom_refreshOptions']) && is_array($context['custom_refreshOptions'])) |
|
@@ 737-739 (lines=3) @@
|
| 734 |
|
<select name="board_to"', empty($context['can_move_children']) ? ' disabled' : '', '>'; |
| 735 |
|
|
| 736 |
|
foreach ($context['board_order'] as $board) |
| 737 |
|
if ($board['id'] != $context['board']['id'] && empty($board['is_child'])) |
| 738 |
|
echo ' |
| 739 |
|
<option value="', $board['id'], '">', $board['name'], '</option>'; |
| 740 |
|
|
| 741 |
|
echo ' |
| 742 |
|
</select> |