Kod:
###########################################################################################
## Hack Title: Random Quotes
## Hack Version: 2.0
## Author: Yo^Bam <yobam@linux.nu>
## Fixed by: Acid <acid_junky@web.de
## Description: Displays a random quote on your phpBB.
##
## Files To Edit: index.php, index_body.tpl
## Included Files: quotes.txt
###########################################################################################
##
## quotes.txt goes in your phpBB root dir.
##
###########################################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
###########################################################################################
#
#-----[ OPEN /index.php ]------------------------------
#
#
#-----[ FIND around line 262 ]-----------------------------------
#
$template->assign_vars(array(
'TOTAL_POSTS' => sprintf($l_total_post_s, $total_posts),
#
#-----[ REPLACE WITH ]-------------------------------------------
#
srand ((double) microtime() * 1000000);
$zitate = file("quotes.txt");
$i = count($zitate)-1;
$template->assign_vars(array(
'QUOTE' => $zitate[rand(0,$i)],
'TOTAL_POSTS' => sprintf($l_total_post_s, $total_posts),
#
#-----[ OPEN /templates/xxx/index_body.tpl ]------------------------------
#
#
#-----[ ADD wherever you want ]-----------------------------------
#
<span class="gen">{QUOTE}</span>
#
#-----[ SAVE/CLOSE ALL FILES ]-----------------------------------
# EoM
Zmienić chciałbym wyświetlanie - z index_body.tpl na overall_header,
domyślam się,że trzeba dodać kod gdzieś do page header, tylko gdzie?
Będe bardzo wdzięczny za pomoc i pozdrawiam