Index: temp/trunk/html/admin/contents/index.php
===================================================================
--- temp/trunk/html/admin/contents/index.php	(revision 4754)
+++ temp/trunk/html/admin/contents/index.php	(revision 5180)
@@ -251,7 +251,7 @@
 	$rank_max = $conn->getone("SELECT MAX(rank) + 1 FROM dtb_news WHERE del_flg = '0'");
 
-	$sql = "INSERT INTO dtb_news (news_date, news_title, creator_id, news_url, link_method, news_comment, rank)
+	$sql = "INSERT INTO dtb_news (news_date, news_title, creator_id, news_url, link_method, news_comment, rank, create_date, update_date)
 			VALUES ( ?,?,?,?,?,?,?)";
-	$arrRegist = array($registDate, $_POST["news_title"], $_SESSION['member_id'],  $_POST["news_url"], $_POST["link_method"], $_POST["news_comment"], $rank_max);
+	$arrRegist = array($registDate, $_POST["news_title"], $_SESSION['member_id'],  $_POST["news_url"], $_POST["link_method"], $_POST["news_comment"], $rank_max, now(), now());
 
 	$conn->query($sql, $arrRegist);
Index: temp/trunk/html/admin/mail/index.php
===================================================================
--- temp/trunk/html/admin/mail/index.php	(revision 5179)
+++ temp/trunk/html/admin/mail/index.php	(revision 5180)
@@ -388,6 +388,6 @@
 	$arrData['body'] = "";
 	$dtb_send_history["search_data"] = serialize($arrData);
-	$dtb_send_history["update_data"] = "now()";
-	$dtb_send_history["create_data"] = "now()";
+	$dtb_send_history["update_date"] = "now()";
+	$dtb_send_history["create_date"] = "now()";
 	$objQuery->insert("dtb_send_history", $dtb_send_history );	
 	
