Update of /cvsroot/phpslash/phpslash-dev/include/modules/block/blocktypes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23377/phpslash-dev/include/modules/block/blocktypes
Modified Files:
Block_render_header.class
Log Message:
Story titles should display correctly.
Index: Block_render_header.class
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/block/blocktypes/Block_render_header.class,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Block_render_header.class 7 Jul 2004 17:28:05 -0000 1.3
--- Block_render_header.class 14 Oct 2004 17:55:31 -0000 1.4
***************
*** 26,29 ****
--- 26,32 ----
$sectionTitle = array('SECTION' => $this->getSectionTitle());
+ if(empty($GLOBALS['pagetitle'])) {
+ $GLOBALS['pagetitle'] = $this->getSectionTitle();
+ }
$this->output = getHeader($GLOBALS['pagetitle'],$this->psl['metatags'],$sectionTitle,$tpl);
return true;
|