I'm currently working on an old vb addon to make it compatible to vb4.
Maybe somebody can help me with this following line:
PHP Code:
eval('$output["variable"]="'.fetch_template('new_template').'";');
My first try was like that:
PHP Code:
eval('$output["variable"]="'.vB_Template::create('new_template')->render().'";');
But i think that's not enough, the eval produces errors.
Thanks in advance.