|
From: OryNider <ory...@us...> - 2007-12-21 06:01:00
|
Update of /cvsroot/mxbb/core/modules/mx_phpbb3blocks In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16491 Modified Files: mx_forum.php Log Message: forum and navigation prosilver stuff Index: mx_forum.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_phpbb3blocks/mx_forum.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mx_forum.php 9 Sep 2007 16:49:36 -0000 1.1 --- mx_forum.php 21 Dec 2007 06:00:18 -0000 1.2 *************** *** 15,18 **** --- 15,24 ---- } + // + // Read Block Settings + // + $title = $mx_block->block_info['block_title']; + $show_title = $mx_block->block_info['show_title']; + /** * @ignore *************** *** 124,127 **** --- 130,135 ---- // Assign index specific vars $template->assign_vars(array( + 'SHOW_TITLE' => $show_title, + 'BLOCK_SIZE' => ( !empty($block_size) ? $block_size : '100%' ), 'TOTAL_POSTS' => sprintf($mx_user->lang[$l_total_post_s], $total_posts), 'TOTAL_TOPICS' => sprintf($mx_user->lang[$l_total_topic_s], $total_topics), |