Page 1 of 1

Feld letzter Beitrag--> Mod Beitragstitel Mod

Posted: 21. February 2008 09:35
by MK-M
Hallo und guten Morgen.

Da ich mir nicht so sicher bin hier mal meine Frage:

Wie heißt der Mod, der im Feld "Letzter Beitrag" den Titel Des letzten Beitrages einfügt?

Als so:
---> Titel / Thema Letzter Beitrag
---> von ...
---> am ...

das ganze soll in die Index PHP, so das jeder das gleich sieht.Was ich gefunden habe scheint zu funktionieren,
aber ich habe Bedenken das ich die Dateien vom Portal kaputt mache( Es müssen ja versch. kopiert werden).

Vll.hat jemand ja einen DL-Link für den MOD der von Euch " für gut " befunden wurde?

Vielen Dank ! für das TOP PORTAL und Eure Mühen

MK-M
http://www.MK-M.de/forum

Re: Feld letzter Beitrag--> Mod Beitragstitel Mod

Posted: 21. February 2008 10:00
by PeterS
Hallo,

du meinst vermutlich dieses NV advanced last topic titles

Gruß Peter

Re: Feld letzter Beitrag--> Mod Beitragstitel Mod

Posted: 21. February 2008 12:59
by MK-M
Hallo

hier Fehlermeldung:

Parse error: syntax error, unexpected T_DOUBLE_ARROW in /www/htdocs/w0097987/forum/includes/functions_display.php on line 395

Ich weiß damit nichts anzufangen.

Hier die funktions_display: http://www.mk-m.de/_downloads/functions_display.ph_
------------------------------------------------------------------------------------------------------------------
'LAST_TOPIC_TITLE' => (isset($last_topic_title) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_topic_title) : '',
'LAST_TOPIC_TITLE_SHORT' => (isset($last_topic_title_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_topic_title_substr) : '',
'LAST_POST_SUBJECT_SHORT' => (isset($last_post_subject_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_post_subject_substr) : '',
'U_LAST_TOPIC' => (isset($last_topic_url) && $config['altt_active'] && !$row['forum_password']) ? $last_topic_url : '',
if (!$config['altt_last_post'])


p.s.Die erste Zeile ist die mit dem Fehler.
---------------------------------------------------------------------------------------------------------------
Kann ev. jemand bitte helfen?


cu
MK-M

Re: Feld letzter Beitrag--> Mod Beitragstitel Mod

Posted: 21. February 2008 13:10
by nickvergessen
lösche

Code: Select all

					if (!$config['altt_last_post'])
			{
				$last_topic_title = $row['topic_title'];
				$last_topic_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id_last_post'] . '&t=' . $row['topic_id']);
				$last_topic_title_substr = ( utf8_strlen($last_topic_title) > $config['altt_char_limit'] + 3 )? (utf8_substr($last_topic_title, 0, $config['altt_char_limit']) . '...') : ($last_topic_title);
				$last_post_subject_substr = '';
			}
			else
			{
				$last_topic_title = '';
				$last_topic_url = '';
				$last_topic_title_substr = '';
				$last_post_subject_substr = ( utf8_strlen($last_post_subject) > $config['altt_char_limit'] + 3 )? (utf8_substr($last_post_subject, 0, $config['altt_char_limit']) . '...') : ($last_post_subject);
			}
			'LAST_TOPIC_TITLE'			=> (isset($last_topic_title) && $config['altt_active'] && !$row['forum_password'])	? censor_text($last_topic_title) : '',
			'LAST_TOPIC_TITLE_SHORT'	=> (isset($last_topic_title_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_topic_title_substr) : '',
			'LAST_POST_SUBJECT_SHORT'	=> (isset($last_post_subject_substr) && $config['altt_active'] && !$row['forum_password']) ? censor_text($last_post_subject_substr) : '',
			'U_LAST_TOPIC'				=> (isset($last_topic_url) && $config['altt_active'] && !$row['forum_password']) ? $last_topic_url : '',
hier gehts weiter
http://www.phpbb.de/viewtopic.php?t=148781

Re: Feld letzter Beitrag--> Mod Beitragstitel Mod

Posted: 21. February 2008 13:36
by MK-M
Danke schön !

Hat nach dem löschen geklappt .
Werde mich jetzt im Thread weiter durchstudieren.

Danke schön, nachmal ..

MK-M

_____________________________

gerade festgestellt:

Nun gehts leider weiter mit einem Fehler, wenn man den letzten Beitragstitel auf nein setzt, kommt die Fehlermeldung wenn man zum Forum aus dem Admincenter geht:

Allgemeiner Fehler
SQL ERROR [ mysql4 ]

Not unique table/alias: 't' [1066]

SQL

SELECT f.*, ft.mark_time, t.topic_title, t.topic_id, t.topic_last_post_id, t.topic_title, t.topic_id, t.topic_last_post_id FROM (phpbb_forums f) LEFT JOIN phpbb_forums_track ft ON (ft.user_id = 2 AND ft.forum_id = f.forum_id) LEFT JOIN phpbb_topics t ON (f.forum_last_post_id = t.topic_last_post_id) LEFT JOIN phpbb_topics t ON (f.forum_last_post_id = t.topic_last_post_id) ORDER BY f.left_id

BACKTRACE

FILE: includes/db/mysql.php
LINE: 158
CALL: dbal_mysql->sql_error()

FILE: includes/functions_display.php
LINE: 124
CALL: dbal_mysql->sql_query()

FILE: index.php
LINE: 28
CALL: display_forums()

-----------------------------

Wenn man ja setzt ist alles o.k

Re: Feld letzter Beitrag--> Mod Beitragstitel Mod

Posted: 21. February 2008 15:39
by PeterS
Hallo,

am besten bist du mit deinen Problemen, bei http://www.phpbb.de/viewtopic.php?t=148781 aufgehoben, denn das hat ja nichts mit dem Portal zu tun.

Dort bekommst du auch direkt die Hilfe die benötigst.

Gruß Peter

Re: Feld letzter Beitrag--> Mod Beitragstitel Mod

Posted: 21. February 2008 16:30
by Redbull254
nickvergessen wrote: hier gehts weiter
http://www.phpbb.de/viewtopic.php?t=148781
@MK-M
Bitte immer den ganzen Beitrag lesen. ;-)

PeterS wrote:Hallo,

am besten bist du mit deinen Problemen, bei http://www.phpbb.de/viewtopic.php?t=148781 aufgehoben, denn das hat ja nichts mit dem Portal zu tun.

Dort bekommst du auch direkt die Hilfe die benötigst.

Gruß Peter
Genauso ist es. 8-)