diff options
| author | lsces <lester@lsces.co.uk> | 2016-02-07 17:23:09 +0000 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2016-02-07 17:23:09 +0000 |
| commit | 440dd66a18d5f3f58c20f297e5c7d7be1741c77b (patch) | |
| tree | 021f4095a4292527b62432fa2a9c075b7702abd2 /modules | |
| parent | efecaa5e52f1b7f9e09b840c261ccc763a455689 (diff) | |
| download | search-440dd66a18d5f3f58c20f297e5c7d7be1741c77b.tar.gz search-440dd66a18d5f3f58c20f297e5c7d7be1741c77b.tar.bz2 search-440dd66a18d5f3f58c20f297e5c7d7be1741c77b.zip | |
Move from Smarty2 to Smarty3 function style
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/mod_global_search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mod_global_search.php b/modules/mod_global_search.php index 21cad84..f658299 100644 --- a/modules/mod_global_search.php +++ b/modules/mod_global_search.php @@ -30,5 +30,5 @@ if( empty( $contentTypes ) ) { } } } -$gBitSmarty->assign( 'contentTypes', $contentTypes ); +$_template->tpl_vars['contentTypes'] = new Smarty_variable( $contentTypes ); ?> |
