missed a couple more template engine assignments

This commit is contained in:
Zach Prezkuta 2012-12-23 06:29:58 -07:00
parent b9f4687260
commit 232deadfd2
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ $a->theme_info = array(
'family' => 'dispy',
'name' => 'dark',
);
$a->theme['template_engine'] = 'smarty3';
set_template_engine($a, 'smarty3');
function dispy_dark_init(&$a) {
/** @purpose set some theme defaults

View File

@ -13,7 +13,7 @@ $a->theme_info = array(
'family' => 'dispy',
'name' => 'light',
);
$a->theme['template_engine'] = 'smarty3';
set_template_engine($a, 'smarty3');
function dispy_light_init(&$a) {