Skip to content

Commit

Permalink
Implemented mods can't access random from dashboard #88. Please note …
Browse files Browse the repository at this point in the history
…this doesn't use mod custom_pages functionality provided by vichan (because the that only works if your overboard has name that doesn't look like other boards), and requires ['overboards'] to be set as an array of board uri's which are overboards, with the correct values for type (theme type e.g. ukko, rand or semirand) title, subtitle, thread_limit and exclude in array of for each board uri
  • Loading branch information
Appleman1234 committed Apr 10, 2017
1 parent e37a3d6 commit ddbabcc
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions inc/mod/pages.php
Expand Up @@ -741,8 +741,26 @@ function mod_board_log($board, $page_no = 1, $hide_names = false, $public = fals
function mod_view_board($boardName, $page_no = 1) {
global $config, $mod;

if (!openBoard($boardName))
error($config['error']['noboard']);
if (!openBoard($boardName)){
if (in_array($boardName,array_keys($config['overboards']))){
$type = $config['overboards'][$boardName]['type'];
require_once("templates/themes/$type/theme.php");
global $mod;

$overboard = new $type();
$overboard->settings = array();
$overboard->settings['uri'] = $boardName;
$overboard->settings['title'] = $config['overboards'][$boardName]['title'];
$overboard->settings['subtitle'] = $config['overboards'][$boardName]['subtitle'];
$overboard->settings['thread_limit'] = $config['overboards'][$boardName]['thread_limit'];
$overboard->settings['exclude'] = $config['overboards'][$boardName]['exclude'];

echo $overboard->build($mod);
}
else {
error($config['error']['noboard']);
}
}

if (!$page = index($page_no, $mod)) {
error($config['error']['404']);
Expand Down

0 comments on commit ddbabcc

Please sign in to comment.