Beiträge: |
Ich habe zwar erst die Stelle "Neue Diskussionen" gefunden (für mich erstmal das wichtigste). Wenn man die Einstellung "Springe zum letzten Posting im Thema" aktiviert hat. Sollte man auch bei den neusten Diskussionen, direkt zur letzten Antwort gehen.
Alte Code-Passage:
// Datei: /html/system/forum/plugin/middlebox/lastpostings/main.php
// Zeile: 307 - 309
$help = '<img src="' . $opnConfig['opn_default_images'] . 'recent.gif" alt="" /> ' . '<a class="' . $table->currentclass . '" href="' . encodeurl (array ($opnConfig['opn_url'] . '/system/forum/viewtopic.php',
'topic' => $topic_id,
'forum' => $forum_id) ) . '">';
Neue Code-Passage:
// Datei: /html/system/forum/plugin/middlebox/lastpostings/main.php
// Zeile: 307 - 309
if($golastpost) {
$help = '<img src="' . $opnConfig['opn_default_images'] . 'recent.gif" alt="" /> ' . '<a class="' . $table->currentclass . '" href="' . encodeurl (array ($opnConfig['opn_url'] . '/system/forum/viewtopic.php',
'topic' => $topic_id,
'forum' => $forum_id,
'viewlastpost' => '1'),
true,
true,
false,
'#post_id' . $last_post[8]) . '">';
} else {
$help = '<img src="' . $opnConfig['opn_default_images'] . 'recent.gif" alt="" /> ' . '<a class="' . $table->currentclass . '" href="' . encodeurl (array ($opnConfig['opn_url'] . '/system/forum/viewtopic.php',
'topic' => $topic_id,
'forum' => $forum_id)) . '">';
}
|