ich habe den News Block Mod installiert:
http://www.phpbbhacks.com/download/7521
Ausserdem habe ich den TPL-Teil auf die viewforum und viewtopic übertragen, was natürlich mit sich führt, dass der bbcode und die Smilies nicht formatiert werden.
Dies ist der Teil für index.php, wie und wo könnte ich den in viewtopic.php und viewforum.php unterbringen?
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------
#
index.php
#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'common.'.$phpEx);
#
#-----[ AFTER, ADD ]------------------------------------------
#
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
#
#-----[ FIND ]------------------------------------------
#
//
// Start page proper
//
$sql = "SELECT c.cat_id, c.cat_title, c.cat_order
FROM " . CATEGORIES_TABLE . " c
ORDER BY c.cat_order";
if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not query categories list', '', __LINE__, __FILE__, $sql);
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
//
// News Block Smilies Pass
//
$board_config['news_text'] = smilies_pass($board_config['news_text']);
$news_text_uid = make_bbcode_uid();
$board_config['news_text'] = bbencode_first_pass( $board_config['news_text'], $news_text_uid );
$board_config['news_text'] = bbencode_second_pass ( $board_config['news_text'], $news_text_uid );
$board_config['news_text'] = str_replace("\n", "\n<br />\n", $board_config['news_text']);