Seite 1 von 1

ich such ma hier dumm und dämlich und finde dat nich

Verfasst: 09.07.2003 16:12
von Gast
. . . . . . . . . . ./´¯/)
. . . . . . . . . .,/¯ ./
. . . . . . . . . /. . /
. . . . . . /´¯`/'. .'/´¯¯`·¸
. . . . ./'/. . /. . /. . /¨/¯\
. . . . ('(. . ´. . ´. .¯´/'. .')
. . . . .\. . . . . . . . .'. ./
. . . . .'\'. .\. . . . . ._.·´
. . . . . . \. . . . . . . (
. . . . . . . \. . . . . . \

Verfasst: 09.07.2003 22:39
von Gast
. . . . . . . . . . ./´¯/)
. . . . . . . . . .,/¯ ./
. . . . . . . . . /. . /
. . . . . . /´¯`/'. .'/´¯¯`·¸
. . . . ./'/. . /. . /. . /¨/¯\
. . . . ('(. . ´. . ´. .¯´/'. .')
. . . . .\. . . . . . . . .'. ./
. . . . .'\'. .\. . . . . ._.·´
. . . . . . \. . . . . . . (
. . . . . . . \. . . . . . \

Verfasst: 09.07.2003 22:51
von AWSW
Hallo,
hast Du schon mal diese 5 Seiten durch gesucht ? http://www.phpbbhacks.com/searchresults ... dex+topics

HTH!

Verfasst: 10.07.2003 08:15
von Acid
Falls es auf phpbbhacks.com nicht zu finden is..


lang_main.php
++FINDE (nur ein Auszug)++

Code: Alles auswählen

$lang['Posted_articles_total'] = '
++MIT FOLGENDEM ERSETZEN++

Code: Alles auswählen

$lang['Posted_articles_total'] = 'Unsere Benutzer haben insgesamt <b>%d</b> Artikel in <b>%d</b> Themen geschrieben.';

index.php
++FINDE++

Code: Alles auswählen

$total_posts = get_db_stat('postcount');
++DARUNTER EINFÜGEN++

Code: Alles auswählen

$total_topics = get_db_stat('topiccount');
++FINDE++

Code: Alles auswählen

		'TOTAL_POSTS' => sprintf($l_total_post_s, $total_posts),
++MIT FOLGENDEM ERSETZEN++

Code: Alles auswählen

		'TOTAL_POSTS' => sprintf($l_total_post_s, $total_posts, $total_topics),