du kannst ja mal einen fragen!!!





















Oh no, das hab ich befürchtet...Markus67 hat geschrieben:dann bleibt nur eins .... den kompletten Einbau in die php-Dateien nochmal prüfen ... da hast du mit Sicherheit irgendwo einen Fehler drin.
Emilino hat geschrieben:ok, bei der privmsgs_preview.tpl hätte ich es so gemacht:
Finde:Ersetze mit:Code: Alles auswählen
<td class="row2 two">{MESSAGE}</td>
Code: Alles auswählen
<td valign="top" colspan="2" class="row1"><span class="postbody">{MESSAGE}</span> <!-- BEGIN postrow --> {ATTACHMENTS} <!-- END postrow --> </td>
Und bei der posting_preview.tpl so:
Finde:Danach füge ein:Code: Alles auswählen
<td class="row2 seven gensmall">{MESSAGE}</td>
Code: Alles auswählen
<!-- BEGIN postrow --> {ATTACHMENTS} <!-- END postrow -->
Was sagst du, stimmt das?
Code: Alles auswählen
##################################################################################################################################
#
#-----[ ÖFFNE ]---------------------------------------------
#
includes/functions_admin.php
#
#-----[ FINDE ]---------------------------------------------
# Um Zeile 146
message_die(GENERAL_ERROR, 'Could not update topic', '', __LINE__, __FILE__, $sql);
}
}
#
#-----[ DANACH, FÜGE EIN ]---------------------------------------
# nach der schließenden Klammer und vor: break;
attachment_sync_topic($id);
##################################################################################################################################
#
#-----[ ÖFFNE ]---------------------------------------------
#
templates/subSilver/posting_topic_review.tpl
#
#-----[ IN DER ZEILE FINDE ]---------------------------------------------
# Um Zeile 26 (genau in der Zeile)
{postrow.MESSAGE}</span>
#
#-----[ IN DER ZEILE DANACH, FÜGE EIN ]---------------------------------------
#
{postrow.ATTACHMENTS}
##################################################################################################################################
#
#-----[ ÖFFNE ]---------------------------------------------
#
templates/subSilver/privmsgs_read_body.tpl
#
#-----[ FINDE ]---------------------------------------------
# Um Zeile 47
<td valign="top" colspan="3" class="row1"><span class="postbody">{MESSAGE}</span></td>
#
#-----[ ERSETZE MIT ]---------------------------------------
#
<td valign="top" colspan="3" class="row1"><span class="postbody">{MESSAGE}</span>
<!-- BEGIN postrow -->
{ATTACHMENTS}
<!-- END postrow -->
</td>
#
#-----[ FINDE ]---------------------------------------------
# Um Zeile 74
<input type="submit" name="delete" value="{L_DELETE_MSG}" class="liteoption" />
#
#-----[ DANACH, FÜGE EIN ]---------------------------------------
#
<!-- BEGIN switch_attachments -->
<input type="submit" name="pm_delete_attach" value="{L_DELETE_ATTACHMENTS}" class="liteoption" />
<!-- END switch_attachments -->
##################################################################################################################################
#
#-----[ ÖFFNE ]---------------------------------------------
#
templates/subSilver/profile_view_body.tpl
#
#-----[ FINDE ]---------------------------------------------
# Um Zeile 41
<td> <b><span class="gen">{INTERESTS}</span></b></td>
</tr>
#
#-----[ DANACH, FÜGE EIN ]---------------------------------------
#
<!-- BEGIN switch_upload_limits -->
<tr>
<td valign="top" align="right" nowrap="nowrap"><span class="gen">{L_UPLOAD_QUOTA}:</span></td>
<td>
<table width="175" cellspacing="1" cellpadding="2" border="0" class="bodyline">
<tr>
<td colspan="3" width="100%" class="row2">
<table cellspacing="0" cellpadding="1" border="0">
<tr>
<td bgcolor="{T_TD_COLOR2}"><img src="templates/subSilver/images/spacer.gif" width="{UPLOAD_LIMIT_IMG_WIDTH}" height="8" alt="{UPLOAD_LIMIT_PERCENT}" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="33%" class="row1"><span class="gensmall">0%</span></td>
<td width="34%" align="center" class="row1"><span class="gensmall">50%</span></td>
<td width="33%" align="right" class="row1"><span class="gensmall">100%</span></td>
</tr>
</table>
<b><span class="genmed">[{UPLOADED} / {QUOTA} / {PERCENT_FULL}]</span> </b><br />
<span class="genmed"><a href="{U_UACP}" class="genmed">{L_UACP}</a></span></td>
</td>
</tr>
<!-- END switch_upload_limits -->
##################################################################################################################################
Code: Alles auswählen
break;
}
return true;
}
?>
Code: Alles auswählen
attachment_sync_topic($id);
Code: Alles auswählen
<div>{postrow.MESSAGE}</div>
Code: Alles auswählen
<div>{postrow.ATTACHMENTS}]</div>
Code: Alles auswählen
<tr>
<td colspan="3"><h2>{L_MESSAGE}</h2></td>
</tr>
Code: Alles auswählen
<td valign="top" colspan="3" class="row1"><span class="postbody">{MESSAGE}</span>
<!-- BEGIN postrow -->
{ATTACHMENTS}
<!-- END postrow -->
</td>
Code: Alles auswählen
<input type="submit" name="delete" value="{L_DELETE_MSG}" class="button" />
Code: Alles auswählen
<!-- BEGIN switch_attachments -->
<input type="submit" name="pm_delete_attach" value="{L_DELETE_ATTACHMENTS}" class="liteoption" />
<!-- END switch_attachments -->
Code: Alles auswählen
{L_INTERESTS}: {INTERESTS}<br /><br />
Code: Alles auswählen
<!-- BEGIN switch_upload_limits -->
<tr>
<td valign="top" align="right" nowrap="nowrap"><span class="gen">{L_UPLOAD_QUOTA}:</span></td>
<td>
<table width="175" cellspacing="1" cellpadding="2" border="0" class="bodyline">
<tr>
<td colspan="3" width="100%" class="row2">
<table cellspacing="0" cellpadding="1" border="0">
<tr>
<td bgcolor="{T_TD_COLOR2}"><img src="templates/subSilver/images/spacer.gif" width="{UPLOAD_LIMIT_IMG_WIDTH}" height="8" alt="{UPLOAD_LIMIT_PERCENT}" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="33%" class="row1"><span class="gensmall">0%</span></td>
<td width="34%" align="center" class="row1"><span class="gensmall">50%</span></td>
<td width="33%" align="right" class="row1"><span class="gensmall">100%</span></td>
</tr>
</table>
<b><span class="genmed">[{UPLOADED} / {QUOTA} / {PERCENT_FULL}]</span> </b><br />
<span class="genmed"><a href="{U_UACP}" class="genmed">{L_UACP}</a></span></td>
</td>
</tr>
<!-- END switch_upload_limits -->