flatpress/fp-includes/smarty-4.1.0/libs/plugins/function.comment_form.php
2022-06-25 12:56:15 +02:00

16 lines
389 B
PHP

<?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');
}
?>