The timestamp column's type is mediumint which only stores integers up to 8388607 causing the date to display improperly on the report page.

Workaround through SQL:
ALTER TABLE admin_notes MODIFY timestamp INT(11);