From: Eloi G. <ada...@us...> - 2009-02-24 17:49:59
|
Update of /cvsroot/phpwebsite-comm/modules/article/class In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23513/class Modified Files: Article.php Log Message: All tags are now stripped out of the summary text in the title link alt property. Index: Article.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/class/Article.php,v retrieving revision 1.61 retrieving revision 1.62 diff -C2 -d -r1.61 -r1.62 *** Article.php 26 Jan 2009 03:14:07 -0000 1.61 --- Article.php 24 Feb 2009 17:49:47 -0000 1.62 *************** *** 646,650 **** $title = $this->title; if (empty($summary)) { ! $summary = $this->summary; } } --- 646,650 ---- $title = $this->title; if (empty($summary)) { ! $summary = PHPWS_Text::parseOutput($this->summary); } } |