fanbinit 0205

This commit is contained in:
Lastorder-DC 2026-02-05 18:24:58 +09:00
parent ba8bbda74b
commit f343dff713
16 changed files with 47 additions and 24 deletions

View file

@ -547,7 +547,13 @@ class BoardView extends Board
$args->page = intval(Context::get('page')) ?: null;
$args->list_count = $this->list_count;
$args->page_count = $this->page_count;
if(Context::get('v_mode') == 'recommended') $args->s_voted_count = Rhymix\Modules\Yeokbox\Models\Config::getVoteCount();
if(Context::get('v_mode') == 'recommended') {
$args->s_voted_count = Rhymix\Modules\Yeokbox\Models\Config::getVoteCount();
}
if(Context::get('v_mode') == 'super_recommended') {
$args->s_voted_count = Rhymix\Modules\Yeokbox\Models\Config::getSuperVoteCount();
$args->s_readed_count = Rhymix\Modules\Yeokbox\Models\Config::getReadCount();
}
if (isset($this->module_info->include_days) && $this->module_info->include_days > 0)
{
$args->start_regdate = date('YmdHis', time() - ($this->module_info->include_days * 86400));