Update of /cvsroot/phpwebsite-comm/modules/rssfeeds/class
In directory sc8-pr-cvs1:/tmp/cvs-serv26235
Modified Files:
RSS.php
Log Message:
Block display fix
Index: RSS.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rssfeeds/class/RSS.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** RSS.php 18 Oct 2003 16:56:05 -0000 1.5
--- RSS.php 19 Oct 2003 02:39:25 -0000 1.6
***************
*** 611,616 ****
$tags = array();
!
! $tags["TITLE"] = $this->getLabel();
if($this->_show_title && $this->_show_url)
$tags["TITLE"] = "<a href=\"" . $this->_content[0]['link'] . "\" target=\"" . $this->_target . "\">" .
--- 611,618 ----
$tags = array();
!
! if($this->_show_title && !$this->_show_url)
! $tags["TITLE"] = $this->getLabel();
!
if($this->_show_title && $this->_show_url)
$tags["TITLE"] = "<a href=\"" . $this->_content[0]['link'] . "\" target=\"" . $this->_target . "\">" .
|