diff options
author | modus75 <modus75@users.noreply.github.com> | 2016-01-23 23:00:39 +0100 |
---|---|---|
committer | modus75 <modus75@users.noreply.github.com> | 2016-01-23 23:00:39 +0100 |
commit | 69cdcf2316cefde2246cdb2b0cd3926644695233 (patch) | |
tree | 95bb01d26f7baf8b84a2a409a1332493e773234c /include | |
parent | f3cb99ea09d5a490758febba6b22d28bbab3b356 (diff) |
fix change in smarty class name new version
Diffstat (limited to 'include')
-rw-r--r-- | include/calendar_base.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/calendar_base.class.php b/include/calendar_base.class.php index 7eaa5e22c..020265d17 100644 --- a/include/calendar_base.class.php +++ b/include/calendar_base.class.php @@ -360,7 +360,7 @@ GROUP BY period'; if ( !empty($tpl_var) ) { $existing = $template->smarty->getVariable('chronology_navigation_bars'); - if (! ($existing instanceof Undefined_Smarty_Variable)) + if (! ($existing instanceof Smarty_Undefined_Variable)) { $existing->value[ sizeof($existing->value)-1 ] = array_merge( $existing->value[ sizeof($existing->value)-1 ], $tpl_var); |