public function fix_comment_reply_link($link, $args, $comment, $post)
 {
     $reply_url = add_query_arg('replytocom', $comment->comment_ID, ks_comments_post_url($post->ID));
     if (strpos($link, 'wp-login.php?redirect_to=')) {
         $url = ks_get_login_url(KTAI_NOT_ECHO, $reply_url);
         if ($url) {
             $link = $args['before'] . '<a href="' . esc_url($url) . '">' . $args['login_text'] . '</a>' . $args['after'];
         } else {
             $link = '';
         }
     } elseif ($post->post_password && !ks_post_password_required($post)) {
         if (preg_match('!<img localsrc="\\w+"[^>]*?>!s', $args['reply_text'], $icon)) {
             // <?php /* syntax hilighting fix */
             $icon = $icon[0];
             $reply_text = strip_tags($args['reply_text']);
         } else {
             $icon = '';
             $reply_text = strip_tags($args['reply_text']);
         }
         $link = _ks_internal_link($reply_url, '', $reply_text, $post->post_password, $args['before'] . $icon, $args['after']);
     } else {
         $link = $args['before'] . '<a href="' . esc_url($reply_url) . '">' . $args['reply_text'] . '</a>' . $args['after'];
     }
     return $link;
 }
			<?php 
            echo implode("<br />", array_map('esc_html', explode("\n", $ks_commentdata['message'])));
            ?>
			</font></p> 
		<?php 
        }
        ks_require_term_id_form(ks_plugin_url(KTAI_NOT_ECHO) . 'comments-post.php');
        ks_fix_encoding_form();
        if (is_user_logged_in()) {
            ks_session_id_form();
            ?>
			<p><?php 
            printf(__('Logged in as %s.', 'ktai_style'), esc_html($user_identity));
            ?>
 [<a href="<?php 
            echo esc_url(ks_get_logout_url(KTAI_NOT_ECHO, ks_comments_post_url()));
            ?>
"><?php 
            _e('Log out');
            ?>
</a>]<br /><?php 
            if (!ks_cookie_available()) {
                ?>
<small><?php 
                _e('Note: Ater posting a comment, you are automatically logged out.', 'ktai_style');
                ?>
</small><br /><?php 
            }
        } else {
            if ($login_url) {
                ?>
function ks_comments_post_link()
{
    if (!comments_open()) {
        return;
    }
    $defaults = array('anchor' => __('Post comments', 'ktai_style'), 'before' => '', 'after' => '', 'icon' => '<img localsrc="149" alt="" />', 'accesskey' => NULL, 'echo' => true);
    $r = _ks_parse_arg(func_get_args(), $defaults);
    if (isset($r['label'])) {
        $r['anchor'] = $r['label'];
    }
    $post_url = ks_comments_post_url();
    global $post;
    $post_pass = ks_post_password_required($post) ? NULL : $post->post_password;
    $output = $r['before'] . _ks_internal_link($post_url, $r['accesskey'], $r['anchor'], $post_pass, $r['icon']) . $r['after'];
    if ($r['echo']) {
        echo $output;
    }
    return $output;
}