diff --git a/common/js/tree_menu.js b/common/js/tree_menu.js
index 1b8f2e562..517ff55d2 100644
--- a/common/js/tree_menu.js
+++ b/common/js/tree_menu.js
@@ -49,6 +49,8 @@ function loadTreeMenu(url, menu_id, zone_id, title, callback_func, manual_select
// 노드 정보들을 담을 변수 세팅
node_info_list[menu_id] = new Array();
+ if(typeof(title)=='undefined') title = '';
+
// xml_handler를 이용해서 직접 메뉴 xml파일(layout module에서 생성)을 읽음
var oXml = new xml_handler();
oXml.reset();
@@ -91,7 +93,7 @@ function drawTreeMenu(oXml, callback_func, resopnse_tags, null_func, param) {
var zone = xGetElementById(zone_id);
var html = "";
- if(title) html = '

'+title+'
';
+ if(title) html = ''+title+'
';
tree_menu_folder_list[menu_id] = new Array();
@@ -182,12 +184,12 @@ function drawNode(parent_node, menu_id) {
// 무조건 펼침이 아닐 경우
if(expand!="Y") {
- if(!hasNextSibling) child_html += ''+chtml+'
';
- else child_html += ''+chtml+'
';
+ if(!hasNextSibling) child_html += ''+chtml+'
';
+ else child_html += ''+chtml+'
';
// 무조건 펼침일 경우
} else {
- if(!hasNextSibling) child_html += ''+chtml+'
';
- else child_html += ''+chtml+'
';
+ if(!hasNextSibling) child_html += ''+chtml+'
';
+ else child_html += ''+chtml+'
';
}
}
diff --git a/common/tpl/images/original_image_box_close.gif b/common/tpl/images/original_image_box_close.gif
index 97df730c9..b15b3b2db 100644
Binary files a/common/tpl/images/original_image_box_close.gif and b/common/tpl/images/original_image_box_close.gif differ
diff --git a/common/tpl/images/plugin.gif b/common/tpl/images/plugin.gif
index 3987b826e..c20d83e41 100644
Binary files a/common/tpl/images/plugin.gif and b/common/tpl/images/plugin.gif differ
diff --git a/layouts/sample_layout/layout.html b/layouts/sample_layout/layout.html
index 4bf0647ce..cda6f0085 100644
--- a/layouts/sample_layout/layout.html
+++ b/layouts/sample_layout/layout.html
@@ -1,5 +1,5 @@