From df25a353d85a602eda68deededfd23308cd8db7e Mon Sep 17 00:00:00 2001 From: zero Date: Thu, 19 Jul 2007 07:43:04 +0000 Subject: [PATCH] =?UTF-8?q?=EC=A0=9C=EB=AA=A9=ED=95=84=EB=93=9C=EA=B0=80?= =?UTF-8?q?=20=EC=97=86=EC=9D=84=20=EA=B2=BD=EC=9A=B0=EC=97=90=EB=8F=84=20?= =?UTF-8?q?=EC=9E=90=EB=8F=99=20=EC=A0=80=EC=9E=A5=EC=9D=B4=20=EB=90=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/trunk@1953 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/tpl/js/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/editor/tpl/js/editor.js b/modules/editor/tpl/js/editor.js index 70b265508..a6278a749 100755 --- a/modules/editor/tpl/js/editor.js +++ b/modules/editor/tpl/js/editor.js @@ -146,7 +146,7 @@ function _editorAutoSave() { if(fo_obj && upload_target_srl) { var title = fo_obj.title.value; var content = editorGetContent(upload_target_srl); - if(title.trim() != _autoSaveObj.title.trim() || content.trim() != _autoSaveObj.content.trim()) { + if((fo_obj.title && title.trim() != _autoSaveObj.title.trim()) || content.trim() != _autoSaveObj.content.trim()) { var params = new Array(); params["document_srl"] = upload_target_srl; params["title"] = title;