Beiträge: 1.044
Themen: 114
Registriert seit: 04.05.2006
Hallo!
Ich hab eben folgendes Plugin installiert:
http://mods.mybboard.net/download.php?did=371
Nun bekomm ich folgende Fehlermeldung:
Zitat:Parse error: syntax error, unexpected T_VARIABLE, expecting '}' in /www/htdocs/w00855dc/anime4.de.forum/showthread.php(808) : eval()'d code on line 1
Was sagt dieser aus?
Wie kann ich das Problem beheben?
Grüße.
Beiträge: 18.383
Themen: 257
Registriert seit: 09.02.2005
Im Template showthread befindet sich ein Fehler. Laut Fehlermeldung wird eine abschließende geschweifte Klammer erwartet, vermutlich fehlt diese hinter einer Variablen.
Gruß,
Michael
Support erfolgt NUR im Forum!
Bitte gelöste Themen als "erledigt" markieren.
Beiträge mit mangelhafter Rechtschreibung/Grammatik werden kommentarlos gelöscht.
Beiträge: 1.044
Themen: 114
Registriert seit: 04.05.2006
03.05.2007, 23:01
(Dieser Beitrag wurde zuletzt bearbeitet: 03.05.2007, 23:04 von SweetySchnuffel.)
Bin ich blind:
Zitat:<html>
<head>
<title>{$thread['subject']}</title>
{$headerinclude}
<script type="text/javascript">
var quickdelete_confirm = "{$lang->quickdelete_confirm}";
</script>
<script type="text/javascript" src="jscripts/thread.js?ver=121"></script>
</head>
<body>
{$header}
<table class="tborder" border="0" cellpadding="4" cellspacing="1">
<thead>
<tr>
<td class="thead" colspan="8">
<strong>Folgende Benutzer lesen diesen Beitrag:</strong>
</td>
</tr>
</thead>
<tr>
<td class="trow1" colspan="2">
<span class="smalltext">{$usersbrowsing}</span>
</td>
</tr>
</table>
<br />
{$pollbox}
<div style="float: right; padding-bottom: 4px;">
{$newreply}{$newthread}
</div>
{$multipage}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
<tr>
<td class="thead" colspan="2">
<div style="float: right;">
<span class="smalltext"><strong><a href="showthread.php?mode=threaded&tid={$tid}&pid={$pid}#pid{$pid}">{$lang->threaded}</a> | <a href="showthread.php?mode=linear&tid={$tid}&pid={$pid}#pid{$pid}">{$lang->linear}</a></strong></span>
</div>
<div>
<strong>{$rating} {$thread['subject']}</strong>
</div>
</td>
</tr>
<tr>
<td class="tcat" width="15%"><span class="smalltext"><strong>{$lang->author}</strong></span></td>
<td class="tcat" width="85%"><span class="smalltext"><strong>{$lang->message}</strong></span></td>
</tr>
{$posts}
{$threadpages}
<tr>
<td colspan="2" class="tfoot">
<div><strong>« <a href="showthread.php?tid={$tid}&action=nextoldest">{$lang->next_oldest}</a> | <a href="showthread.php?tid={$tid}&action=nextnewest">{$lang->next_newest}</a> »</strong></div>
</td>
</tr>
</table>
<div style="padding-top: 4px;">
{$newreply}{$newthread}
</div>
{$threadexbox}
{$quickreply}
{$moderationoptions}
{$similarthreads$viewer}
<br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both;">
<tr>
<td class="trow1">
<table width="100%">
<tr>
<td>
<span class="smalltext">
<a href="printthread.php?tid={$tid}">{$lang->view_printable}</a><br />
<a href="sendthread.php?tid={$tid}">{$lang->send_thread}</a><br />
<a href="usercp2.php?action=addsubscription&tid={$tid}">{$lang->subscribe_thread}</a> | <a href="usercp2.php?action=addfavorite&tid={$tid}">{$lang->add_favorites}</a>
</span>
</td>
<td align="right">
{$ratethread}
<br />
{$forumjump}
</td>
</tr>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>
Ich finde nichts!? ô.O
Beiträge: 18.383
Themen: 257
Registriert seit: 09.02.2005
Da ist der Fehler:
Code:
{$similarthreads$viewer}
So sollte es aussehen:
Code:
{$similarthreads}{$viewer}
Gruß,
Michael
Support erfolgt NUR im Forum!
Bitte gelöste Themen als "erledigt" markieren.
Beiträge mit mangelhafter Rechtschreibung/Grammatik werden kommentarlos gelöscht.
Beiträge: 1.044
Themen: 114
Registriert seit: 04.05.2006
Wunderbar - danke, ich war eben Blind!