Seite 1 von 1

Letztes Thema in der Übersicht

Verfasst: 16.08.2003 19:02
von the-other-board
Diesen Mod habe ich eingebaut!

Code: Alles auswählen

## Mod Title:   shows topic of last made post on index
## Mod Version: 1.4.0
## Author:      e-sven <sven@e-sven.net> http://www.e-sven.net
## Description: -adds lasts post topic to each forum on
##               the index page (based on read-access)
##		-word censorship is used
##		-topic title with more then 27 chars are cut off
##		-mouseover info displays the full title
Nun sieht jeder auf der Startseite, welches das letzte aktive Thema im jeweiligen Forum ist. Demo -> www.the-other-board.de

Ich möchte aber dass es in 2 bestimmten Foren nicht angezeigt wird!
Was muss ich dann ändern??


Gruß, sNaKe

Verfasst: 18.08.2003 02:04
von the-other-board
*maleinwenigschieb* :D

Verfasst: 18.08.2003 10:33
von Acid

Code: Alles auswählen

		if (strlen($topic_title)>27) {
			$topic_title = substr($topic_title,0,24) . '...';
		}
..füge mal in der index.php nach diesem Code folgendes ein..

Code: Alles auswählen

		$topic_title = ( $forum_id != 1 ) ? $topic_title : '';

Verfasst: 18.08.2003 12:34
von the-other-board
dankeschön! hat perfekt geklappt! :)