23.08.2015, 21:18
Hiho!
Ich nutze MyBB 1.8.5
Ich habe ein Template "forumdisplay_newreply_bottom"
Nun bekomme ich es aber nicht hin das $bet_tid gefüllt wird. hatte dort auch schon nur $tid stehen, das ging auch nicht.
Das echo wird ausgegeben und aber das Template erscheint nicht.
Kann mir da jemand bitte helfen?
Ich nutze MyBB 1.8.5
Ich habe ein Template "forumdisplay_newreply_bottom"
Code:
<a href="newreply.php?tid={$bet_tid}" class="button new_reply_button">
<img class="newthread new_reply_bottom" src="{$theme['imglangdir']}/newreply_bottom.gif" alt="{$lang->post_thread}" title="{$lang->post_thread}" />
</a>
Nun bekomme ich es aber nicht hin das $bet_tid gefüllt wird. hatte dort auch schon nur $tid stehen, das ging auch nicht.
PHP-Code:
$plugins->add_hook("showthread_end", "template_newthread_bottom");
function template_newthread_bottom(){
global $templates;
global $tid;
global $bet_tid;
$bet_tid=5;
echo "TEST".$tid."B";
eval("\$forumdisplay_newreply_bottom = \"".$templates->get("forumdisplay_newreply_bottom")."\";");
}
Das echo wird ausgegeben und aber das Template erscheint nicht.
Kann mir da jemand bitte helfen?