Verfasst: 15.09.2005 20:47
danke 

phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Was muss ich machen?//
// Recent Topics
//
$lang['Recent_topics'] = 'Letzte Themen';
$lang['Recent_first'] = 'gestartet am %s';
$lang['Recent_first_poster'] = ' von %s';
Wo liegt denn das Problem? Das sind doch die Einträge für die lang-Dateien.Yannis hat geschrieben:Hochgeladen, usw.
Aber:
Was muss ich machen?//
// Recent Topics
//
$lang['Recent_topics'] = 'Letzte Themen';
$lang['Recent_first'] = 'gestartet am %s';
$lang['Recent_first_poster'] = ' von %s';
Danke im Vorraus, Yannis
schau mal in die recent.php ... ganz am Anfang ...sommer hat geschrieben:Hallo,
ich habe die no_phpbb_recent mal eingebaut, welche auch wunderbar ohne zutun läuft.
Nur würde ich jetzt gern, dass bis auf die Themen nichts wieter angezeigt wird.
Wie lauten denn die Änderungen, dass das Forum, der Verfasser und das Datum nicht nicht angezeigt werden?
Was mir noch aufgefallen ist... es werden Themen von unsichtbaren Foren, die nur für Gruppenmitglieder zugänglich sind, angezeigt... wie kann man das unterbinden? Durch die Foren IDs oder gibts da ne andere Möglichkeit?
Code: Alles auswählen
// ############ Edit below ########################################
$topic_length = '30'; // length of topic title
$topic_limit = '5'; // limit of displayed topics
$special_forums = '0'; // specify forums ('0' = no; '1' = yes)
$forum_ids = ''; // IDs of forums; separate them with a comma
$config_path = '/forum/'; // path to config.php
$root_path = '/forum/'; // link path
// ############ Edit above ########################################
Code: Alles auswählen
// ############## output ##############
echo '<tr>
<td valign="top" nowrap="nowrap">'. $topic_type .'<a href="'. $topic_url .'">'. $topic_title .'</a></td>
</tr>
<tr>
<td><a href="'. $forum_url .'">'. $line[$i]['forum_name'] .'</a>: '. $last_url .' '. $last_time .'</td>
</tr>';
// ############## output ##############
Code: Alles auswählen
// ############## output ##############
echo '<tr>
<td valign="top" nowrap="nowrap"><a href="'. $topic_url .'">'. $topic_title .'</a></td>
</tr>';
// ############## output ##############
Code: Alles auswählen
$is_auth_ary = auth(AUTH_ALL, AUTH_LIST_ALL, $userdata);
[img:3872f175...
Hi Markus,Markus67 hat geschrieben:
Damit nur die Themen angezeigt werden suche in der recent.phpersetze mit:Code: Alles auswählen
// ############## output ############## echo '<tr> <td valign="top" nowrap="nowrap">'. $topic_type .'<a href="'. $topic_url .'">'. $topic_title .'</a></td> </tr> <tr> <td><a href="'. $forum_url .'">'. $line[$i]['forum_name'] .'</a>: '. $last_url .' '. $last_time .'</td> </tr>'; // ############## output ##############
MarkusCode: Alles auswählen
// ############## output ############## echo '<tr> <td valign="top" nowrap="nowrap"><a href="'. $topic_url .'">'. $topic_title .'</a></td> </tr>'; // ############## output ##############