Is passing raw variables from PHP to be parsed by a template possible?
I have this in my PHP page.
PHP Code:
$content = "<vb:if condition=\"'1'=='1'\">test<vb:else />not</vb:if>";
vB_Template::preRegister('Web Page',array('content' => $content));
And this in my template
However the vB template conditionals aren't being parsed.
It's just going straight to the web page.