it can run under 4.x,but can't view result as table or Export Results to CSV(you will get a empty table or file)
to let it show in 4.x and do not report template error,you can do this change:
edit survey.php
find:
Code:
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('vbsurvey') . '");');
replace them to:
Code:
$navbar = render_navbar_template(construct_navbits($navbits));
$templater = vB_Template::create('vbsurvey');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('body', $body);
print_output($templater->render());