From 50b723eb79f3758dcac54ac72534092efb308e38 Mon Sep 17 00:00:00 2001 From: lansi951 Date: Sun, 19 Jan 2014 17:21:39 +0900 Subject: [PATCH] =?UTF-8?q?getBrowserTitle()=EC=9D=B4=20=EB=8F=99=EC=9E=91?= =?UTF-8?q?=ED=95=98=EC=A7=80=20=EC=95=8A=EB=8A=94=20=EB=AC=B8=EC=A0=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 값을 return 해주지 않아 정상적으로 동작하지 않는 문제 수정. --- modules/document/document.item.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/document/document.item.php b/modules/document/document.item.php index c854af04e..40140a70f 100644 --- a/modules/document/document.item.php +++ b/modules/document/document.item.php @@ -1138,7 +1138,7 @@ class documentItem extends Object function getBrowserTitle() { - $this->getModuleName(); + return $this->getModuleName(); } } /* End of file document.item.php */