1
0

* PHP 5.3.0 compatibility without E_WARNING triggers (garvinhicking)

This commit is contained in:
Garvin Hicking
2009-08-21 08:52:50 +00:00
parent 6e8f54f588
commit 3a77f13428
2 changed files with 3 additions and 1 deletions

View File

@ -839,7 +839,7 @@ function serendipity_smarty_getImageSize($params, &$smarty) {
* @param object Smarty object
* @return
*/
function &serendipity_replaceSmartyVars(&$tpl_source, &$smarty) {
function &serendipity_replaceSmartyVars($tpl_source, &$smarty) {
$tpl_source = str_replace('$CONST.', '$smarty.const.', $tpl_source);
return $tpl_source;
}