소속이 출력되지 않는 현상 수정
This commit is contained in:
parent
746af31904
commit
99bbc9d73a
1 changed files with 6 additions and 6 deletions
|
|
@ -4,14 +4,14 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_CSS_URL.'/member.css">', 0);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="memberWrap">
|
<div class="memberWrap">
|
||||||
<? for($i=0; $i < count($list); $i++) {
|
<?php for($i=0; $i < count($list); $i++) {
|
||||||
$ch_list = $list[$i];
|
$ch_list = $list[$i];
|
||||||
|
|
||||||
if($side['si_name']) {
|
|
||||||
echo "<div class='title'>{$side['si_name']}</div>";
|
|
||||||
}
|
|
||||||
?>
|
?>
|
||||||
<div class="member-box">
|
<div class="member-box">
|
||||||
|
<?php if($side[$i]['si_name']) {
|
||||||
|
echo "<div class='title'>{$side[$i]['si_name']}</div>";
|
||||||
|
}
|
||||||
|
?>
|
||||||
<ul class="member-list">
|
<ul class="member-list">
|
||||||
<? for($k=0; $k < count($ch_list); $k++) {
|
<? for($k=0; $k < count($ch_list); $k++) {
|
||||||
$ch = $ch_list[$k];
|
$ch = $ch_list[$k];
|
||||||
|
|
@ -49,4 +49,4 @@ $('.send_memo').on('click', function() {
|
||||||
window.open(target, 'memo', "width=500, height=300");
|
window.open(target, 'memo', "width=500, height=300");
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue