I have a problem with include's and phrases. It has been recreated in the files test.php and includes/test_include.php.
The problem is that the code is executed and the template fetched, but the phrase is not being printed. The nature of the real script means that I cannot use another plugin to insert the code, so that is out of the question.
Any ideas on how to do this properly?
test.php:
PHP Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
define('THIS_SCRIPT', 'db_update');
$phrasegroups = array('test_phrases');
include('includes/test_include.php');
require_once('./global.php');
did_it();
?>
includes/test_include.php:
PHP Code:
<?php
function did_it() {
$varvar = "set";
eval('print_output("' . fetch_template('test_splitter') . '");');
}
?>
test_splitter template:
HTML Code:
<tr>
<td width="310" valign="top" class="thead">
<if condition="$varvar==set">$vbphrase[test_hello_world]</if>
</td>
<td valign="top" class="thead"></td>
</tr>