제목에 색깔이 있는 경우 안나오는 문제 해결

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4734 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2008-10-30 10:52:26 +00:00
parent 82068ec7c1
commit b47437b088

View file

@ -217,7 +217,7 @@
if($this->get('title_bold')=='Y') $attrs[] = "font-weight:bold;";
if($this->get('title_color')&&$this->get('title_color')!='N') $attrs[] = "color:#".$this->get('title_color');
//if(count($attrs)) return sprintf("<span style=\"%s\">%s</span>", implode(';',$attrs), htmlspecialchars($title));
if(count($attrs)) return sprintf("<span style=\"%s\">%s</span>", implode(';',$attrs), htmlspecialchars($title));
else return htmlspecialchars($title);
}