added missing Smarty plugin file

This commit is contained in:
azett 2022-06-25 12:56:15 +02:00
parent 60e41c60cf
commit c2f64b1d1a

View File

@ -0,0 +1,15 @@
<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* File: function.comment_form.php
* Type: function
* Name: commentform
* Purpose: print out the comment form
* -------------------------------------------------------------
*/
function smarty_function_comment_form($params, &$smarty)
{
return do_action('comment_form');
}
?>