ich habe den weblink mod von phpbb.de eingebaut wobei mir in meinem Postingbereich folgendes erscheint...
-------------------------------------------
[ externes Bild ]
-------------------------------------------
Ihr seht die Auswahloption: Normal, Wichtig; Ank�ndigung, Globale Ank�ndigung und Weblink sind wild gew�rfelt...
Mein viewform_body.tpl sieht an dieser Stelle so aus...
Code: Alles auswählen
<!-- BEGIN topicrow -->
<tr>
<td class="row1" align="center" valign="middle" width="20"><img src="{topicrow.TOPIC_FOLDER_IMG}" width="19" height="18" alt="{topicrow.L_TOPIC_FOLDER_ALT}" title="{topicrow.L_TOPIC_FOLDER_ALT}" /></td>
<td class="row1" width="100%">
<span class="topictitle">{topicrow.NEWEST_POST_IMG}{topicrow.TOPIC_ATTACHMENT_IMG}{topicrow.TOPIC_TYPE}
<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>{row.topicrow.TOPIC_EDIT}</span>
<span class="gensmall"><br />{topicrow.GOTO_PAGE}</span></td>
<td class="row2" align="center" valign="middle"><span class="postdetails">{topicrow.REPLIES}</span></td>
<td class="row3" align="center" valign="middle"><span class="name">{topicrow.TOPIC_AUTHOR}</span></td>
<td class="row2" align="center" valign="middle"><span class="postdetails">{topicrow.VIEWS}</span></td>
<td class="row3Right" align="center" valign="middle" nowrap="nowrap"><span class="postdetails">{topicrow.LAST_POST_TIME}<br />{topicrow.LAST_POST_AUTHOR} {topicrow.LAST_POST_IMG}</span></td>
</tr>
<!-- END topicrow -->
Seitdem habe ich das Problem und kriege es beim besten Willen nicht weg.
Meine modifizierte Posting.php sieht wie folgt aus
Code: Alles auswählen
//
// What auth type do we need to check?
//
$is_auth = array();
switch( $mode )
{
case 'newtopic':
if ( $topic_type == POST_GLOBAL_ANNOUNCE )
{
$is_auth_type = 'auth_globalannounce';
}
else if ( $topic_type == POST_ANNOUNCE )
{
$is_auth_type = 'auth_announce';
}
else if ( $topic_type == POST_STICKY )
{
$is_auth_type = 'auth_sticky';
}
else if ( $topic_type == POST_TITLE_LINK )
{
$is_auth_type = 'auth_post';
}
else
{
$is_auth_type = 'auth_post';
}
break;
Ich bin die genaue (recht kurze) Bauanleitung f�r den weblinkmod mehrmals durchgegangen und habe kein Fehler entdecken k�nnen.
Aktuell l�sst sich Wichtig und Ank�ndigung nicht mehr ausw�hlen..

Kann mir bitte jemand helfen?
Danke