remove newline on include tag

This commit is contained in:
monte.ohrt
2010-06-10 18:58:26 +00:00
parent c963a8342e
commit 968deec9a4

View File

@@ -147,9 +147,9 @@ class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase {
$_output .= "<?php \$_template->updateParentVariables($_parent_scope);?>"; $_output .= "<?php \$_template->updateParentVariables($_parent_scope);?>";
} }
} }
$_output .= "<?php unset(\$_template);?>\n"; $_output .= "<?php unset(\$_template);?>";
return $_output; return $_output;
} }
} }
?> ?>