diff --git a/classes/template/TemplateHandler.class.php b/classes/template/TemplateHandler.class.php
index 0fc03a0ad..9a9e1c112 100644
--- a/classes/template/TemplateHandler.class.php
+++ b/classes/template/TemplateHandler.class.php
@@ -92,9 +92,6 @@
// import xml filter/ css/ js/ 언어파일
$buff = preg_replace_callback('!<\!--%import\(\"([^\"]*?)\"\)-->!is', array($this, '_compileImportCode'), $buff);
- // html 주석 제거
- $buff = preg_replace("!<\!--([^\-]+)-->(\\n)!is", '', $buff);
-
// 파일에 쓰기 전에 직접 호출되는 것을 방지
$buff = sprintf('%s%s%s','',"\n",$buff);
diff --git a/layouts/sample_layout/layout.html b/layouts/sample_layout/layout.html
index c05a4f7ac..f29e78bca 100644
--- a/layouts/sample_layout/layout.html
+++ b/layouts/sample_layout/layout.html
@@ -14,7 +14,6 @@
xe_print_menu("{htmlspecialchars($val['text'])}","{htmlspecialchars($val['href'])}","{$val['open_window']}","{$val['normal_btn']}","{$val['hover_btn']}","{$val['active_btn']}","", "", {$val['selected']?'true':'false'});
-
{@ $second_menu_list = $val['list']; }
@@ -34,7 +33,6 @@
xe_print_menu("{htmlspecialchars($val['text'])}","{htmlspecialchars($val['href'])}","{$val['open_window']}","{$val['normal_btn']}","{$val['hover_btn']}","{$val['active_btn']}","", "", {$val['selected']?'true':'false'});
-
{@ $third_menu_list = $val['list']; }
@@ -60,12 +58,6 @@
-
-