From 232deadfd2e9b3a6b9f2327b61e967867162c51e Mon Sep 17 00:00:00 2001 From: Zach Prezkuta Date: Sun, 23 Dec 2012 06:29:58 -0700 Subject: [PATCH] missed a couple more template engine assignments --- view/theme/dispy/dark/theme.php | 2 +- view/theme/dispy/light/theme.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/dispy/dark/theme.php b/view/theme/dispy/dark/theme.php index bae9db41e..21d27f75e 100644 --- a/view/theme/dispy/dark/theme.php +++ b/view/theme/dispy/dark/theme.php @@ -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 diff --git a/view/theme/dispy/light/theme.php b/view/theme/dispy/light/theme.php index 806f30624..f8753ec1a 100644 --- a/view/theme/dispy/light/theme.php +++ b/view/theme/dispy/light/theme.php @@ -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) {