diff --git a/modules/planet/skins/xe_planet/content_list.html b/modules/planet/skins/xe_planet/content_list.html
index 03e3aec1f..af9b114a2 100644
--- a/modules/planet/skins/xe_planet/content_list.html
+++ b/modules/planet/skins/xe_planet/content_list.html
@@ -29,7 +29,7 @@
{@ $regdate = $item->get('regdate') }
-
{getTimeGap($item->get('regdate'), sprintf('y/m/d a H%s i%s', $lang->unit_hour,$lang->unit_min))}
+
{getTimeGap($item->get('regdate'), sprintf('y/m/d a H%s i%s', $lang->unit_hour,$lang->unit_min))}
- TAG
diff --git a/modules/planet/skins/xe_planet/css/default.css b/modules/planet/skins/xe_planet/css/default.css
index ce2f5ce7b..7443c53e7 100644
--- a/modules/planet/skins/xe_planet/css/default.css
+++ b/modules/planet/skins/xe_planet/css/default.css
@@ -250,6 +250,7 @@ button span{ position:absolute; width:0; height:0; font:0/0 Sans-serif; visibili
.commentBody .comment .tongue .postExtra *{ margin:0; padding:0;}
.commentBody .comment .tongue .postExtra .tag { float:left;}
.commentBody .comment .tongue .postExtra .tag .time{ display:inline; margin-right:5px; color:#999; font:11px AppleGothic, Dotum, Gulim, Sans-serif;}
+.commentBody .comment .tongue .postExtra .tag .time a{color:#999;}
.commentBody .comment .tongue .postExtra .tag dl{ display:inline;}
.commentBody .comment .tongue .postExtra .tag dt{ text-align:center; padding:0 7px; margin-right:5px; display:inline; background:url(../images/bgTag.gif) no-repeat center; font:bold 11px Tahoma; color:#fff;}
.commentBody .comment .tongue .postExtra .tag dd{ display:inline; position:relative;}
diff --git a/modules/planet/skins/xe_planet/js/planet.js b/modules/planet/skins/xe_planet/js/planet.js
index a0b3f05d1..52ff5d5da 100644
--- a/modules/planet/skins/xe_planet/js/planet.js
+++ b/modules/planet/skins/xe_planet/js/planet.js
@@ -178,7 +178,9 @@ function planetPreview(obj) {
text = text.replace(/>/ig,'>');
text = text.replace(/\.\.\./g, '…');
text = text.replace(/--/g, '—');
- $('preview_text').innerHTML = text.replace(/"([^"]*)":(mms|http|ftp|https)([^ ]+)/ig,'$1');
+ text = text.replace(/"([^"]*)":([0-9]+)/ig,'$1');
+ text = text.replace(/"([^"]*)":(mms|http|ftp|https)([^ ]+)/ig,'$1');
+ $('preview_text').innerHTML = text;
}else{
$Element('preview').addClass('off');
$('preview_text').innerHTML = '';