diff --git a/adm/index.php b/adm/index.php
index 5bc358782..514c8c157 100644
--- a/adm/index.php
+++ b/adm/index.php
@@ -117,7 +117,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
| =$mb_id?> |
=$row['mb_name']?> |
- =$mb_nick?> |
+ =$mb_nick?> |
=$row[mb_level]?> |
=number_format($row[mb_point])?> |
=$row[mb_mailling]?'예':'아니오';?> |
@@ -217,7 +217,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
=cut_str($row['gr_subject'],10)?> |
=cut_str($row['bo_subject'],20)?> |
=$comment?>=conv_subject($row2['wr_subject'], 100)?> |
- =$name?> |
+ =$name?> |
=$datetime?> |
@@ -293,7 +293,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
| =$row['mb_id']?> |
=$row2['mb_name']?> |
- =$mb_nick?> |
+ =$mb_nick?> |
=$row['po_datetime']?> |
=$link1.$row['po_content'].$link2?> |
=number_format($row[po_point])?> |
diff --git a/adm/member_list.php b/adm/member_list.php
index 6f06375ce..dbe4c2983 100644
--- a/adm/member_list.php
+++ b/adm/member_list.php
@@ -213,7 +213,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
=$leave_msg?>=$intercept_msg?>
=$row['mb_name']?> |
- =$mb_nick?> |
+ =$mb_nick?> |
=get_member_level_select("mb_level[$i]", 1, $member[mb_level], $row[mb_level])?> |
=number_format($row[mb_point])?> |
=substr($row['mb_today_login'],2,8)?> |
diff --git a/adm/point_list.php b/adm/point_list.php
index 663886925..0119da000 100644
--- a/adm/point_list.php
+++ b/adm/point_list.php
@@ -153,11 +153,11 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
=$row['mb_id']?> |
=$row2['mb_name']?> |
- =$mb_nick?> |
+ =$mb_nick?> |
=$row['po_datetime']?> |
=$link1?>=$row['po_content']?>=$link2?> |
- =number_format($row[po_point])?> |
- =number_format($row2[mb_point])?> |
+ =number_format($row[po_point])?> |
+ =number_format($row2[mb_point])?> |
diff --git a/css/adm.css b/css/adm.css
index 6f7ceebc6..e3bc43984 100644
--- a/css/adm.css
+++ b/css/adm.css
@@ -108,6 +108,8 @@ td {padding:10px}
.td_num {width:60px;text-align:center}
.td_bignum {width:120px;text-align:center}
.td_mbid, .td_mbnick, .td_mbname {width:80px;text-align:center}
+.td_mbnick div, .td_mbname div {position:relative} /* 파이어폭스에서 사이드뷰 위치를 잡기 위함 */
+.td_mbnick #sideview, .td_mbname #sideview {position:absolute;top:20px;left:0}
.td_time {width:150px;text-align:center}
.td_boolean {width:50px;text-align:center}
/* 인덱스 */
diff --git a/js/sideview.js b/js/sideview.js
index dd44d6609..bfc7da060 100644
--- a/js/sideview.js
+++ b/js/sideview.js
@@ -41,7 +41,7 @@ if (typeof(SIDEVIEW_JS) == 'undefined') // 한번만 실행
if (!this.isVisible)
return "";
- var str = "| · "+this.onclickEvent+" |
";
+ var str = ""+this.onclickEvent+"";
return str;
}
@@ -115,19 +115,19 @@ if (typeof(SIDEVIEW_JS) == 'undefined') // 한번만 실행
var oBody = document.body;
if (oSideViewLayer == null) {
- oSideViewLayer = document.createElement("DIV");
+ oSideViewLayer = document.createElement("div");
oSideViewLayer.id = this.targetObj;
- oSideViewLayer.style.position = 'absolute';
+ oSideViewLayer.style.position = "absolute";
oBody.appendChild(oSideViewLayer);
}
oSideViewLayer.innerHTML = this.makeNameContextMenus();
if (getAbsoluteTop(this.curObj) + this.curObj.offsetHeight + oSideViewLayer.scrollHeight + 5 > oBody.scrollHeight)
- oSideViewLayer.style.top = getAbsoluteTop(this.curObj) - oSideViewLayer.scrollHeight;
+ oSideViewLayer.style.top = getAbsoluteTop(this.curObj) - oSideViewLayer.scrollHeight + "px";
else
- oSideViewLayer.style.top = getAbsoluteTop(this.curObj) + this.curObj.offsetHeight;
+ oSideViewLayer.style.top = getAbsoluteTop(this.curObj) + this.curObj.offsetHeight + "px";
- oSideViewLayer.style.left = getAbsoluteLeft(this.curObj) - this.curObj.offsetWidth + 14;
+ oSideViewLayer.style.left = getAbsoluteLeft(this.curObj) - this.curObj.offsetWidth + 14 + "px";
divDisplay(this.targetObj, 'block');
@@ -138,7 +138,7 @@ if (typeof(SIDEVIEW_JS) == 'undefined') // 한번만 실행
{
var oCurrentNode=oNode;
var iTop=0;
- while(oCurrentNode.tagName!="BODY") {
+ while(oCurrentNode.tagName!="body") {
iTop+=oCurrentNode.offsetTop - oCurrentNode.scrollTop;
oCurrentNode=oCurrentNode.offsetParent;
}
@@ -150,7 +150,7 @@ if (typeof(SIDEVIEW_JS) == 'undefined') // 한번만 실행
var oCurrentNode=oNode;
var iLeft=0;
iLeft+=oCurrentNode.offsetWidth;
- while(oCurrentNode.tagName!="BODY") {
+ while(oCurrentNode.tagName!="body") {
iLeft+=oCurrentNode.offsetLeft;
oCurrentNode=oCurrentNode.offsetParent;
}
@@ -160,8 +160,8 @@ if (typeof(SIDEVIEW_JS) == 'undefined') // 한번만 실행
function makeNameContextMenus()
{
- var str = "";
-
+ var str = "";
+
var i=0;
for (i=this.heads.length - 1; i >= 0; i--)
str += this.heads[i].renderRow();
@@ -170,7 +170,7 @@ if (typeof(SIDEVIEW_JS) == 'undefined') // 한번만 실행
for (j=0; j < this.tails.length; j++)
str += this.tails[j].renderRow();
- str += "
";
+ str += "";
return str;
}