diff --git a/adm/point_list.php b/adm/point_list.php
index b5fa1ec3d..cf6663f46 100644
--- a/adm/point_list.php
+++ b/adm/point_list.php
@@ -179,7 +179,7 @@ function point_clear()
|
- 만료
+ 만료
|
|
diff --git a/bbs/point.php b/bbs/point.php
index ebfdc9c56..dc7907f4f 100644
--- a/bbs/point.php
+++ b/bbs/point.php
@@ -31,6 +31,7 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
| 일시 |
내용 |
+ 만료일 |
지급포인트 |
사용포인트 |
@@ -55,10 +56,19 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
}
$po_content = $row['po_content'];
+
+ $expr = '';
+ if($row['po_expired'] == 1)
+ $expr = ' txt_expired';
?>
|
|
+
+
+ 만료
+
+ |
|
|
@@ -76,12 +86,12 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
- | 소계 |
+ 소계 |
|
|
- | 보유포인트 |
+ 보유포인트 |
|
diff --git a/css/default.css b/css/default.css
index ddba6d729..16d8d82cd 100644
--- a/css/default.css
+++ b/css/default.css
@@ -196,6 +196,9 @@ td.empty_table {padding:85px 0;text-align:center}
.td_datetime {width:110px;text-align:center}
.td_mng {width:80px;text-align:center}
+.txt_active {color:#5d910b}
+.txt_expired {color:#ccc}
+
/* 새창 기본 스타일 */
.new_win {}
.new_win #new_win_title {margin-bottom:20px;padding:0 20px;height:60px;border-top:3px solid #4e5d60;border-bottom:1px solid #e9e9e9;background:#fff;font-size:1.2em;line-height:5em}