Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 911)
+++ trunk/CHANGELOG	(revision 912)
@@ -13,6 +13,7 @@
 ------------------------------------- 2.8.0 -------------------------------------
 17-Jan-2009 Matthias Gallas
 !	changed handling of post_date in news modul (thanks to susigross)
++	added hour and minute support to default published_when field in news modul
 13-Jan-2009 Christian Sommer
 -	removed the obsolete Codepress framework from the include folder
 +	added Javascript syntax highlighting framework EditArea as replacement for Codepress
Index: trunk/wb/modules/news/modify_post.php
===================================================================
--- trunk/wb/modules/news/modify_post.php	(revision 911)
+++ trunk/wb/modules/news/modify_post.php	(revision 912)
@@ -115,7 +115,7 @@
 <tr>
 	<td><?php echo $TEXT['PUBL_START_DATE']; ?>:</td>
 	<td>
-	<input type="text" id="publishdate" name="publishdate" value="<?php if($fetch_content['published_when']==0) print date($jscal_format, strtotime((date('Y-m-d')))); else print date($jscal_format, $fetch_content['published_when']);?>" style="width: 120px;" />
+	<input type="text" id="publishdate" name="publishdate" value="<?php if($fetch_content['published_when']==0) print date($jscal_format, strtotime((date('Y-m-d H:i')))); else print date($jscal_format, $fetch_content['published_when']);?>" style="width: 120px;" />
 	<img src="<?php echo ADMIN_URL ?>/images/clock_16.png" id="publishdate_trigger" style="cursor: pointer;" title="<?php echo $TEXT['CALENDAR']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" />
 	<img src="<?php echo ADMIN_URL ?>/images/clock_del_16.png" style="cursor: pointer;" title="<?php echo $TEXT['DELETE_DATE']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" onclick="document.modify.publishdate.value=''" />
 	</td>
