i have found bug like its not showing new comments in admin order page.

admin/orders.php
replace:
$orders_history_query = tep_db_query("select orders_status_id, date_added, customer_notified, comments from " . TABLE_ORDERS_STATUS_HISTORY . " where orders_id = '" . tep_db_input($oID) . "' order by date_added");

with:

$orders_history_query = tep_db_query("select orders_status_id, date_added, customer_notified, comments,YOUR_NEW_BOX from " . TABLE_ORDERS_STATUS_HISTORY . " where orders_id = '" . tep_db_input($oID) . "' order by date_added");

regards,
rajdavinder@gmail.com

More...