<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
				<title><![CDATA[좋아요 기다려주세요 오류]]></title>
		<link>https://www.cosmosfarm.com/threads/rss/document/42021</link>
		<description><![CDATA[<pre>
<code class="language-php"> * 11 capital_P_dangit
 * 11 do_shortcode
 * 20 convert_smilies
 */
global $wp_embed;
add_filter( 'customify_the_content', array( $wp_embed, 'run_shortcode' ), 8 );
add_filter( 'customify_the_content', array( $wp_embed, 'autoembed' ), 8 );
add_filter( 'customify_the_content', 'wptexturize' );
add_filter( 'customify_the_content', 'wpautop' );
add_filter( 'customify_the_content', 'shortcode_unautop' );
add_filter( 'customify_the_content', 'wp_make_content_images_responsive' );
add_filter( 'customify_the_content', 'capital_P_dangit' );
add_filter( 'customify_the_content', 'do_shortcode' );
add_filter( 'customify_the_content', 'convert_smilies' );

/**
 *  Same hook for the_content but not auto P
 * @TODO: do not effect content by plugins
 *
 * 8 WP_Embed:run_shortcode
 * 8 WP_Embed:autoembed
 * 10 wptexturize
 * 10 shortcode_unautop
 * 10 prepend_attachment
 * 10 wp_make_content_images_responsive
 * 11 capital_P_dangit
 * 11 do_shortcode
 * 20 convert_smilies
 */
add_filter( 'customify_the_title', array( $wp_embed, 'run_shortcode' ), 8 );
add_filter( 'customify_the_title', array( $wp_embed, 'autoembed' ), 8 );
add_filter( 'customify_the_title', 'wptexturize' );
add_filter( 'customify_the_title', 'shortcode_unautop' );
add_filter( 'customify_the_title', 'wp_make_content_images_responsive' );
add_filter( 'customify_the_title', 'capital_P_dangit' );
add_filter( 'customify_the_title', 'do_shortcode' );
add_filter( 'customify_the_title', 'convert_smilies' );

add_filter('kboard_user_display', 'kboard_user_message_link', 10, 5);
function kboard_user_message_link($display, $user_id, $username, $plugin, $builder){
	if(is_user_logged_in()){
		if($user_id &amp;&amp; $user_id != get_current_user_id()){
			$display = sprintf('&lt;a href="%s" title="쪽지 보내기"&gt;%s&lt;/a&gt;', get_cosmosfarm_members_messages_url(array('to_user_id'=&gt;$user_id, 'redirect_to'=&gt;urlencode($_SERVER['REQUEST_URI']))), $display);
		}
	}
	return $display;
}
add_filter('kboard_allowed_board_id', 'my_kboard_allowed_board_id', 10, 2);
function my_kboard_allowed_board_id($allowed_board_id, $board_id){
	if($allowed_board_id == '7'){ // 베스트 게시판
		$allowed_board_id = array('7', '5', '6'); // 자신과 다른 게시판의 ID값을 입력
	}
	else if($allowed_board_id == '81'){ // 베스트 오브 베스트 게시판
		$allowed_board_id = array('81', '5', '6','41','42','47','50','51','55','64'); // 자신과 다른 게시판의 ID값을 입력
	}
	else if($allowed_board_id == '13'){ // 장미정원
		$allowed_board_id = array('13', '11', '40', '41', '42', '79', '80', '64', '63', '62', '61', '60', '59', '58', '57', '56', '55', '54', '53', '52', '51', '50', '47', '45', '44', '43'); 
	}
	return $allowed_board_id;
}

add_filter('kboard_user_display', 'kboard_user_message_link', 10, 5);
function kboard_user_message_link($display, $user_id, $username, $plugin, $builder){
	$board = $builder-&gt;board;
	if(is_user_logged_in() &amp;&amp; !$board-&gt;id == '81'){ // 실제 게시판 id로 적용해주세요.
		if($user_id &amp;&amp; $user_id != get_current_user_id()){
			$display = sprintf('&lt;a href="%s" title="쪽지 보내기"&gt;%s&lt;/a&gt;', get_cosmosfarm_members_messages_url(array('to_user_id'=&gt;$user_id, 'redirect_to'=&gt;urlencode($_SERVER['REQUEST_URI']))), $display);
		}
	}
	return $display;
}

// Include the main Customify class.
require_once get_template_directory().'/inc/class-customify.php';

/**
 * Main instance of Customify.
 *
 * Returns the main instance of Customify.
 *
 * @return Customify
 */
function Customify(){
    return Customify::get_instance();
}
Customify();

</code></pre>

<pre>
<code class="language-php">&lt;div id="kboard-comments-&lt;?php echo $content_uid?&gt;" class="kboard-comments-default"&gt;
	&lt;div class="kboard-comments-wrap"&gt;
		
		&lt;div class="comments-header"&gt;
			&lt;div class="comments-count"&gt;
				&lt;?php echo __('Total Reply', 'kboard-comments')?&gt; &lt;span class="comments-total-count"&gt;&lt;?php echo $commentList-&gt;getCount()?&gt;&lt;/span&gt;
			&lt;/div&gt;
			
			&lt;div class="comments-sort"&gt;
				&lt;form id="kboard-comments-sort-form-&lt;?php echo $content_uid?&gt;" method="get" action="&lt;?php echo $url-&gt;toString()?&gt;#kboard-comments-&lt;?php echo $content_uid?&gt;"&gt;
					&lt;?php echo $url-&gt;set('uid', $commentList-&gt;content_uid)-&gt;set('mod', 'document')-&gt;toInput()?&gt;
					
					&lt;select name="kboard_comments_sort" onchange="jQuery('#kboard-comments-sort-form-&lt;?php echo $content_uid?&gt;').submit();"&gt;
						&lt;option value="best"&lt;?php if($commentList-&gt;getSorting() == 'best'):?&gt; selected&lt;?php endif?&gt;&gt;&lt;?php echo __('Best', 'kboard-comments')?&gt;&lt;/option&gt;
						&lt;option value="oldest"&lt;?php if($commentList-&gt;getSorting() == 'oldest'):?&gt; selected&lt;?php endif?&gt;&gt;&lt;?php echo __('Oldest', 'kboard-comments')?&gt;&lt;/option&gt;
						&lt;option value="newest"&lt;?php if($commentList-&gt;getSorting() == 'newest'):?&gt; selected&lt;?php endif?&gt;&gt;&lt;?php echo __('Newest', 'kboard-comments')?&gt;&lt;/option&gt;
					&lt;/select&gt;
				&lt;/form&gt;
			&lt;/div&gt;
			
			&lt;hr&gt;
		&lt;/div&gt;
		
		&lt;!-- 댓글 리스트 시작 --&gt;
		&lt;?php $commentBuilder-&gt;buildTreeList('list-template.php')?&gt;
		&lt;!-- 댓글 리스트 끝 --&gt;
		
		&lt;?php if($commentBuilder-&gt;isWriter()):?&gt;
		&lt;!-- 댓글 입력 폼 시작 --&gt;
		&lt;form id="kboard-comments-form-&lt;?php echo $content_uid?&gt;" method="post" action="&lt;?php echo $commentURL-&gt;getInsertURL()?&gt;" enctype="multipart/form-data" onsubmit="return kboard_comments_execute(this);"&gt;
			&lt;input type="hidden" name="content_uid" value="&lt;?php echo $content_uid?&gt;"&gt;
			&lt;input type="hidden" name="member_uid" value="&lt;?php echo $member_uid?&gt;"&gt;
			&lt;input type="hidden" name="comment_option_ip" value="&lt;?php echo kboard_user_ip()?&gt;"&gt;
			&lt;div class="kboard-comments-form"&gt;
				&lt;?php wp_nonce_field('kboard-comments-execute', 'kboard-comments-execute-nonce-'.$content_uid, !wp_doing_ajax())?&gt;
				
				&lt;div class="comments-field"&gt;
					&lt;textarea name="comment_content" placeholder="&lt;?php echo __('Add a comment', 'kboard-comments')?&gt;..." onfocus="kboard_comments_field_show()" required&gt;&lt;?php echo $temporary-&gt;content?&gt;&lt;/textarea&gt;
				&lt;/div&gt;
				
				&lt;div class="comments-field-wrap"&gt;
					&lt;?php
					// 댓글 입력 필드 시작
					ob_start();
					?&gt;
					
					&lt;?php if(is_user_logged_in()):?&gt;
					&lt;input type="hidden" name="member_display" value="&lt;?php echo $member_display?&gt;"&gt;
					&lt;?php else:?&gt;
					&lt;div class="comments-field field-member-display"&gt;
						&lt;label class="comments-field-label" for="comment_member_display_&lt;?php echo $content_uid?&gt;"&gt;&lt;?php echo __('Author', 'kboard-comments')?&gt;&lt;/label&gt;
						&lt;input type="text" id="comment_member_display_&lt;?php echo $content_uid?&gt;" name="member_display" value="&lt;?php echo $temporary-&gt;member_display?&gt;" placeholder="&lt;?php echo __('Author', 'kboard-comments')?&gt;..." required&gt;
					&lt;/div&gt;
					&lt;div class="comments-field field-password"&gt;
						&lt;label class="comments-field-label" for="comment_password_&lt;?php echo $content_uid?&gt;"&gt;&lt;?php echo __('Password', 'kboard-comments')?&gt;&lt;/label&gt;
						&lt;input type="password" id="comment_password_&lt;?php echo $content_uid?&gt;" name="password" value="" placeholder="&lt;?php echo __('Password', 'kboard-comments')?&gt;..." required&gt;
					&lt;/div&gt;
					&lt;?php endif?&gt;
					
					&lt;div class="comments-field field-image1"&gt;
						&lt;label class="comments-field-label" for="comment_image1_&lt;?php echo $content_uid?&gt;"&gt;사진&lt;/label&gt;
						&lt;input type="file" id="comment_image1_&lt;?php echo $content_uid?&gt;" name="comment_attach_image1" accept="image/*"&gt;
					&lt;/div&gt;
					
					&lt;div class="comments-field field-file1"&gt;
						&lt;label class="comments-field-label" for="comment_file1_&lt;?php echo $content_uid?&gt;"&gt;첨부파일&lt;/label&gt;
						&lt;input type="file" id="comment_file1_&lt;?php echo $content_uid?&gt;" name="comment_attach_file1"&gt;
					&lt;/div&gt;
					
					
					&lt;?php if($board-&gt;useCAPTCHA()):?&gt;
						&lt;?php if(kboard_use_recaptcha()):?&gt;
							&lt;div class="comments-field"&gt;
								&lt;div class="g-recaptcha" data-sitekey="&lt;?php echo kboard_recaptcha_site_key()?&gt;"&gt;&lt;/div&gt;
							&lt;/div&gt;
						&lt;?php else:?&gt;
							&lt;div class="comments-field"&gt;
								&lt;label class="comments-field-label" for="comment_captcha"&gt;&lt;img src="&lt;?php echo kboard_captcha()?&gt;" alt=""&gt;&lt;/label&gt;
								&lt;input type="text" id="comment_captcha" name="captcha" value="" placeholder="CAPTCHA..." required&gt;
							&lt;/div&gt;
						&lt;?php endif?&gt;
					&lt;?php endif?&gt;
					
					&lt;?php
					// 댓글 입력 필드 출력
					$field_html = ob_get_clean();
					do_action('kboard_comments_field', $field_html, $board, $content_uid, $commentBuilder);
					?&gt;
				&lt;/div&gt;
				
				&lt;div class="comments-submit-button"&gt;&lt;input type="submit" value="&lt;?php echo __('Submit', 'kboard-comments')?&gt;"&gt;&lt;/div&gt;
			&lt;/div&gt;
		&lt;/form&gt;
		&lt;!-- 댓글 입력 폼 끝 --&gt;
		&lt;?php elseif(is_user_logged_in()):?&gt;
		&lt;div class="kboard-comments-login"&gt;
			&lt;?php echo __('You do not have permission to add comments.', 'kboard-comments')?&gt;
		&lt;/div&gt;
		&lt;?php else:?&gt;
		&lt;div class="kboard-comments-login"&gt;
			&lt;?php
			// 로그인 메시지 출력
			do_action('kboard_comments_login_content', $board, $content_uid, $commentBuilder);
			?&gt;
		&lt;/div&gt;
		&lt;?php endif?&gt;
	&lt;/div&gt;
&lt;/div&gt;

&lt;?php wp_enqueue_script('kboard-comments-default-script', "{$skin_path}/script.js", array(), KBOARD_COMMNETS_VERSION, true)?&gt;</code></pre>

<pre>
<code class="language-php">&lt;div class="comments-list"&gt;
	&lt;ul&gt;
		&lt;?php while($comment = $commentList-&gt;hasNext()): $commentURL-&gt;setCommentUID($comment-&gt;uid);?&gt;
		&lt;li itemscope itemtype="http://schema.org/Comment" class="kboard-comments-item" data-username="&lt;?php echo $comment-&gt;user_display?&gt;" data-created="&lt;?php echo $comment-&gt;created?&gt;"&gt;
			&lt;div class="comments-list-username" itemprop="author"&gt;
				&lt;?php echo apply_filters('kboard_user_display', $comment-&gt;user_display, $comment-&gt;user_uid, $comment-&gt;user_display, 'kboard-comments', $commentBuilder)?&gt;		
			&lt;/div&gt;
			&lt;div class="comments-list-create" itemprop="dateCreated"&gt;&lt;?php echo date('Y-m-d H:i', strtotime($comment-&gt;created))?&gt;&lt;/div&gt;
			&lt;div class="comments-list-content" itemprop="description"&gt;
				&lt;?php if($comment-&gt;isReader()):?&gt;
					&lt;?php echo wpautop($comment-&gt;content)?&gt;
					
					&lt;?php if(isset($comment-&gt;attach-&gt;image1)):?&gt;
						&lt;p class="comments-list-image1"&gt;&lt;img src="&lt;?php echo esc_url(site_url($comment-&gt;attach-&gt;image1[0]))?&gt;" alt="&lt;?php echo esc_attr($comment-&gt;attach-&gt;image1[1])?&gt;"&gt;&lt;/p&gt;

					&lt;?php endif?&gt;
					
					&lt;?php if(isset($comment-&gt;attach-&gt;file1)):?&gt;
						&lt;p class="comments-list-file1"&gt;&lt;?php echo __('Attachment', 'kboard-comments')?&gt; : &lt;a href="&lt;?php echo $comment-&gt;attach-&gt;file1[2]?&gt;" title="&lt;?php echo __('Download', 'kboard-comments')?&gt;"&gt;&lt;?php echo $comment-&gt;attach-&gt;file1[1]?&gt;&lt;/a&gt;&lt;/p&gt;
					&lt;?php endif?&gt;
				&lt;?php else:?&gt;
					&lt;?php if($comment-&gt;remaining_time_for_reading):?&gt;
						&lt;div class="remaining_time_for_reading"&gt;&lt;?php echo sprintf(__('You can read comments after %d minutes. &lt;a href="%s"&gt;Login&lt;/a&gt; and you can read it right away.', 'kboard-comments'), round($comment-&gt;remaining_time_for_reading/60), wp_login_url($_SERVER['REQUEST_URI']))?&gt;&lt;/div&gt;
					&lt;?php elseif($comment-&gt;login_is_required_for_reading):?&gt;
						&lt;div class="login_is_required_for_reading"&gt;&lt;?php echo sprintf(__('You do not have permission to read this comment. Please &lt;a href="%s"&gt;login&lt;/a&gt;.', 'kboard-comments'), wp_login_url($_SERVER['REQUEST_URI']))?&gt;&lt;/div&gt;
					&lt;?php else:?&gt;
						&lt;div class="you_do_not_have_permission"&gt;&lt;?php echo __('You do not have permission to read this comment.', 'kboard-comments')?&gt;&lt;/div&gt;
					&lt;?php endif?&gt;
				&lt;?php endif?&gt;
				&lt;?php if($board-&gt;isAdmin()):?&gt;
					&lt;br /&gt;
					&lt;br /&gt;
					[ip: &lt;?=$comment-&gt;option-&gt;ip?&gt;]
					[닉네임: &lt;?=get_userdata(abs($comment-&gt;user_uid))-&gt;display_name?&gt;]
					[uid : &lt;?=abs($comment-&gt;user_uid)?&gt;]
				&lt;?php endif?&gt;
			&lt;/div&gt;
			
			&lt;div class="comments-list-controller"&gt;
				&lt;?php if($commentBuilder-&gt;isWriter()):?&gt;
				&lt;div class="left"&gt;
					&lt;?php if($comment-&gt;isEditor()):?&gt;
					&lt;button type="button" class="comments-button-action comments-button-delete" onclick="kboard_comments_delete('&lt;?php echo $commentURL-&gt;getDeleteURL()?&gt;');" title="&lt;?php echo __('Delete', 'kboard-comments')?&gt;"&gt;&lt;?php echo __('Delete', 'kboard-comments')?&gt;&lt;/button&gt;
					&lt;button type="button" class="comments-button-action comments-button-edit" onclick="kboard_comments_open_edit('&lt;?php echo $commentURL-&gt;getEditURL()?&gt;');" title="&lt;?php echo __('Edit', 'kboard-comments')?&gt;"&gt;&lt;?php echo __('Edit', 'kboard-comments')?&gt;&lt;/button&gt;
					&lt;?php elseif($comment-&gt;password &amp;&amp; !is_user_logged_in()):?&gt;
					&lt;button type="button" class="comments-button-action comments-button-delete" onclick="kboard_comments_open_confirm('&lt;?php echo $commentURL-&gt;getConfirmURL()?&gt;');" title="&lt;?php echo __('Delete', 'kboard-comments')?&gt;"&gt;&lt;?php echo __('Delete', 'kboard-comments')?&gt;&lt;/button&gt;
					&lt;button type="button" class="comments-button-action comments-button-edit" onclick="kboard_comments_open_edit('&lt;?php echo $commentURL-&gt;getEditURL()?&gt;');" title="&lt;?php echo __('Edit', 'kboard-comments')?&gt;"&gt;&lt;?php echo __('Edit', 'kboard-comments')?&gt;&lt;/button&gt;
					&lt;?php endif?&gt;
					&lt;button type="button" class="comments-button-action comments-button-reply kboard-reply" onclick="kboard_comments_reply(this, '#kboard-comment-reply-form-&lt;?php echo $comment-&gt;uid?&gt;', '#kboard-comments-form-&lt;?php echo $content_uid?&gt;', '&lt;?php echo $content_uid?&gt;');" title="&lt;?php echo __('Reply', 'kboard-comments')?&gt;"&gt;&lt;?php echo __('Reply', 'kboard-comments')?&gt;&lt;/button&gt;
				&lt;/div&gt;
				&lt;?php endif?&gt;
				
				&lt;div class="right"&gt;
					&lt;button type="button" class="comments-button-action comments-button-like" onclick="kboard_comment_like(this)" data-uid="&lt;?php echo $comment-&gt;uid?&gt;" title="&lt;?php echo __('Like', 'kboard-comments')?&gt;"&gt;&lt;?php echo __('Like', 'kboard-comments')?&gt; &lt;span class="kboard-comment-like-count"&gt;&lt;?php echo intval($comment-&gt;like)?&gt;&lt;/span&gt;&lt;/button&gt;
					&lt;button type="button" class="comments-button-action comments-button-unlike" onclick="kboard_comment_unlike(this)" data-uid="&lt;?php echo $comment-&gt;uid?&gt;" title="&lt;?php echo __('Unlike', 'kboard-comments')?&gt;"&gt;&lt;?php echo __('Unlike', 'kboard-comments')?&gt; &lt;span class="kboard-comment-unlike-count"&gt;&lt;?php echo intval($comment-&gt;unlike)?&gt;&lt;/span&gt;&lt;/button&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			
			&lt;hr&gt;
			
			&lt;!-- 답글 리스트 시작 --&gt;
			&lt;?php $commentBuilder-&gt;buildTreeList('list-template.php', $comment-&gt;uid, $depth+1)?&gt;
			&lt;!-- 답글 리스트 끝 --&gt;
			
			&lt;!-- 댓글 입력 폼 시작 --&gt;
			&lt;form id="kboard-comment-reply-form-&lt;?php echo $comment-&gt;uid?&gt;" method="post" action="&lt;?php echo $commentURL-&gt;getInsertURL()?&gt;" class="comments-reply-form" enctype="multipart/form-data" onsubmit="return kboard_comments_execute(this);"&gt;
				&lt;input type="hidden" name="content_uid" value="&lt;?php echo $comment-&gt;content_uid?&gt;"&gt;
				&lt;input type="hidden" name="parent_uid" value="&lt;?php echo $comment-&gt;uid?&gt;"&gt;
				&lt;input type="hidden" name="member_uid" value="&lt;?php echo $member_uid?&gt;"&gt;
			&lt;/form&gt;
			&lt;!-- 댓글 입력 폼 끝 --&gt;
		&lt;/li&gt;
		&lt;?php endwhile?&gt;
	&lt;/ul&gt;
&lt;/div&gt;</code></pre>

<p>위에서 차례대로 theme/customify/function.php, plugins/kboard-comments/skin/edge-anonymous 의 list.php list_template.php 입니다.</p>

<p>최신 버전 업데이트 이후, 실수로 파일을 날리는 바람에 제가 임의로 짜집기해서 업데이트 원 파일과 다를 수 있습니다.</p>

<p>문제는 테마 업데이트 이후로 잘 작동하던 좋아요 기능이 다시 제대로 작동하지 않습니다. 버튼을 1번 누를경우 미 반응, 2번 눌렀을때 기다려주세요. 라는 alert 창이 뜹니다. 그 후 새로고침을 했을 때 +1 만큼 늘어나 있습니다.</p>

<p>어떻게 해결할 수 있을까요?</p>]]></description>
		<copyright>Copyright 2026, 코스모스팜</copyright>
				<item>
			<title><![CDATA[안녕하세요.

이전 댓글에 안내해드린 링크를 참고하셔서

충돌이나 에러 메시지가 있는지 확인해보셔야...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/42075</link>
			<description><![CDATA[<p>안녕하세요.</p>

<p>이전 댓글에 안내해드린 링크를 참고하셔서</p>

<p>충돌이나 에러 메시지가 있는지 확인해보셔야 할 듯합니다.</p>

<p> </p>

<p>테마 관련해서는 저희 쪽에서 도움을 드리는 데 한계가 있습니다.</p>

<p>테마 제작자에게도 문의해보시는 게 좋을 듯합니다.</p>

<p> </p>

<p>비회원으로도 확인 가능한 페이지 주소 알려주시면 살펴보겠습니다.</p>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Mon, 23 Mar 2020 02:10:43 +0000</pubDate>
			<category>KBoard</category>
		</item>
				<item>
			<title><![CDATA[게시글에서 좋아요기능이 작동하지 않는건데 저희가 건드린 파일은 저쪽이 거의 다라 3개의 파일만 첨부...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/42066</link>
			<description><![CDATA[<p>게시글에서 좋아요기능이 작동하지 않는건데 저희가 건드린 파일은 저쪽이 거의 다라 3개의 파일만 첨부했습니다.</p>

<p>다른 파일 체크해봐야 할곳이 있을까요? 테마 업데이트 한 이후에는 잘 됐어서 게시판이나 댓글 플러그인 처럼 테마도 업데이트 압축파일을 다시 받아 볼 순 없나요?</p>]]></description>
			<author>smbird</author>
			<pubDate>Sat, 21 Mar 2020 06:38:40 +0000</pubDate>
			<category>KBoard</category>
		</item>
				<item>
			<title><![CDATA[안녕하세요~^^

KBoard 플러그인 댓글 쪽에서만 해당 문제가 발생하는지요?

저희 쪽 테스트 서버에서는...]]></title>
			<link>https://www.cosmosfarm.com/threads/document/42032</link>
			<description><![CDATA[<p>안녕하세요~^^</p>

<p>KBoard 플러그인 댓글 쪽에서만 해당 문제가 발생하는지요?</p>

<p>저희 쪽 테스트 서버에서는 해당 코드를 적용한 후</p>

<p>게시글, 댓글 좋아요 테스트를 해보니 정상 동작하는 것을 확인했습니다.</p>

<p> </p>

<p><a href="https://blog.cosmosfarm.com/?p=1162" target="_blank">워드프레스에서 에러 혹은 알 수 없는 문제가 있을 때 대응 방법</a>을 참고하셔서</p>

<p>에러 메시지나 충돌이 있는지 점검해보셔야 할 듯합니다.</p>

<p>고맙습니다.</p>]]></description>
			<author>스레드봇</author>
			<pubDate>Fri, 20 Mar 2020 01:00:12 +0000</pubDate>
			<category>KBoard</category>
		</item>
			</channel>
</rss>