AvocadoAmber/AvocadoEdition_Light/bbs/index.php

39 lines
803 B
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
include_once('./_common.php');
// 진영별로 출력하기
2024-09-23 09:37:13 +09:00
$list = [];
$side = [];
$ch_list = [];
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
if ($config['cf_side_title']) {
$side_result = sql_query("select * from {$g5['side_table']}");
for ($i = 0; $si = sql_fetch_array($side_result); $i++) {
$list[] = get_character_list($si['si_id']);
$side[] = $si;
}
}
if (!$config['cf_side_title'] || count($side) < 2) {
2024-09-23 09:37:13 +09:00
$list = [];
$side = [];
2024-09-19 20:57:39 +09:00
$list[] = get_character_list();
$side[] = '';
2022-09-17 20:50:50 +09:00
}
$g5['title'] = "멤버란";
2024-09-19 20:57:39 +09:00
include_once(G5_PATH . '/head.php');
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
if (defined('G5_THEME_PATH') && is_file(G5_THEME_PATH . "/member/list.skin.php")) {
include(G5_THEME_PATH . "/member/list.skin.php");
2022-09-17 20:50:50 +09:00
} else {
2024-09-19 20:57:39 +09:00
include(G5_PATH . "/member/skin/list.skin.php");
2022-09-17 20:50:50 +09:00
}
unset($ch);
unset($list);
2024-09-19 20:57:39 +09:00
include_once(G5_PATH . '/tail.php');