From d6b2b4bb0e0b3574b5f8d1963fd4f266c8881c77 Mon Sep 17 00:00:00 2001 From: wdlee91 Date: Sun, 16 Mar 2008 09:16:57 +0000 Subject: [PATCH] =?UTF-8?q?=EC=A0=9C=EB=AA=A9=20=EC=83=89=EC=83=81?= =?UTF-8?q?=EC=9D=B4=20N=EC=9C=BC=EB=A1=9C=20=EC=A7=80=EC=A0=95=EB=90=98?= =?UTF-8?q?=EC=96=B4=20color:#N=EC=9C=BC=EB=A1=9C=20=EC=A7=80=EC=A0=95?= =?UTF-8?q?=EB=90=A0=20=EC=88=98=20=EC=9E=88=EB=8A=94=20=EC=83=81=ED=99=A9?= =?UTF-8?q?=20=EB=B0=B0=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3942 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- 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 266bff782..afc3b8396 100644 --- a/modules/document/document.item.php +++ b/modules/document/document.item.php @@ -217,7 +217,7 @@ $attrs = array(); if($this->get('title_bold')=='Y') $attrs[] = "font-weight:bold;"; - if($this->get('title_color')) $attrs[] = "color:#".$this->get('title_color'); + if($this->get('title_color')&&$this->get('title_color')!='N') $attrs[] = "color:#".$this->get('title_color'); if(count($attrs)) return sprintf("%s", implode(';',$attrs), htmlspecialchars($title)); else return htmlspecialchars($title);