Summary:
Errors in action.admin_editshow.php
Detailed Description:
You need to change:
$startdate = $row['start_date'];
$enddate = $row['end_date'];
to:
$startdate = $row['start_time'];
$enddate = $row['end_time'];
to match the field names in the table.