0byt3m1n1
Path:
/
data
/
0
/
0
/
6
/
46
/
6861
/
user
/
7034
/
cgi-bin
/
php
/
lib
/
[
Home
]
File: function.MTCommentAuthor.php
<?php function smarty_function_MTCommentAuthor($args, &$ctx) { $c = $ctx->stash('comment'); if (!$c) { return $ctx->error("No comment available"); } $a = isset($c['comment_author']) ? $c['comment_author'] : ''; if (isset($args['default'])) { $a or $a = $args['default']; } $a or $a = ''; return strip_tags($a); } ?>