LastPostTopicindex-Mod Problem

Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Antworten
thoefreak
Mitglied
Beiträge: 87
Registriert: 16.08.2007 14:02

LastPostTopicindex-Mod Problem

Beitrag von thoefreak »

Hallo,
Ich habde den Mod LastPostTopic installiert und nun steht beim öffnen meines Forums:

Code: Alles auswählen

Parse error: syntax error, unexpected '}' in /home/gutschein/public_html/phpBB2/index.php on line 498
Hier der Link zu meinem index Quell-Text:
http://www.pastebin.ca/741310

Brauche da Hilfe.
MFG
sound-ks
Mitglied
Beiträge: 433
Registriert: 17.05.2007 02:00
Wohnort: Stuttgart

Beitrag von sound-ks »

hmm Probiere mal folgedes:

Suche:

Code: Alles auswählen

 if ( $forum_data[$j]['forum_last_post_id'] )
        {
                $topic_title = $forum_data[$j]['topic_title'];
                $topic_title2 = $forum_data[$j]['topic_title'];

                //
                // Censor topic title
                //
                if ( count($orig_word) )
                {
                        $topic_title = preg_replace($orig_word, $replacement_word, $topic_title);
                        $topic_title2 = preg_replace($orig_word, $replacement_word, $topic_title2);
                }

                if (strlen($topic_title)>27) {
                        $topic_title = substr($topic_title,0,24) . '...';
                }

                $last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
                $last_post = '<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '" title="' . $topic_title2 . '">' . $topic_title . '</a><br>';
                $last_post .= $last_post_time . '&nbsp;<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '"></a><br>' . $lang['by'] . '&nbsp;';
                $last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '='  . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> ';
        }}
und lösche jetzt nur das letzte zeichen " }". ich glaube da ist das eine zu viel.
Ich installiere euch MODs, Styles und richte euch einen Forum. Wenn Interessiert per PN melden.
Bilder Hochladen : http://multi-hoster.com
thoefreak
Mitglied
Beiträge: 87
Registriert: 16.08.2007 14:02

Beitrag von thoefreak »

Man vielen Dank! Alles funktioniert wieder!
Mein Tagesheld;)
Antworten

Zurück zu „phpBB 2.0: Mod Support“