1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-12 01:50:48 +01:00

fixes boardlist in catalog when in mod mode

This commit is contained in:
sshscp15 2022-09-01 10:29:53 -03:00 committed by Fredrick Brennan
parent 30e7574649
commit e42a1b04b1

View File

@ -118,7 +118,7 @@
$element = Element('themes/catalog/catalog.html', Array(
'settings' => $settings,
'config' => $config,
'boardlist' => createBoardlist(),
'boardlist' => createBoardlist($mod),
'recent_images' => $recent_images,
'recent_posts' => $recent_posts,
'stats' => $stats,
@ -130,13 +130,13 @@
if ($mod) {
return $element;
} else {
file_write($config['dir']['home'] . $board_name . '/catalog.html', $element);
file_write($config['dir']['home'] . $board_name . '/catalog.html', $element);
file_write($config['dir']['home'] . $board_name . '/index.rss', Element('themes/catalog/index.rss', Array(
'config' => $config,
'recent_posts' => $recent_posts,
'board' => $board
)));
}
file_write($config['dir']['home'] . $board_name . '/index.rss', Element('themes/catalog/index.rss', Array(
'config' => $config,
'recent_posts' => $recent_posts,
'board' => $board
)));
}
}
};