Update of /cvsroot/phpslash/phpslash-ft/class
In directory usw-pr-cvs1:/tmp/cvs-serv24768/phpslash-ft/class
Modified Files:
Block_render_topic.class
Log Message:
corrected topic blocks to correctly link section_id
Index: Block_render_topic.class
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/class/Block_render_topic.class,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Block_render_topic.class 2001/10/09 23:21:45 1.4
--- Block_render_topic.class 2001/12/23 20:30:37 1.5
***************
*** 49,53 ****
$default_tpl = "topicsblock.tpl";
! if( $this->psl[site_homesection] == false) {
$site_homesection = "Home";
}
--- 49,55 ----
$default_tpl = "topicsblock.tpl";
! if( $this->psl[site_homesection]) {
! $site_homesection = $this->psl[site_homesection];
! } else {
$site_homesection = "Home";
}
|