From 7df2a3e5d82142af72042c16c50c9da0a3dfaec2 Mon Sep 17 00:00:00 2001 From: skeeter Date: Fri, 15 Sep 2000 00:14:42 +0000 Subject: [PATCH] fixed editing of start time display --- calendar/edit_entry.php | 2 +- doc/CHANGELOG | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/calendar/edit_entry.php b/calendar/edit_entry.php index 53a13daf08..aa29916fcb 100755 --- a/calendar/edit_entry.php +++ b/calendar/edit_entry.php @@ -37,7 +37,7 @@ if ($id > 0) { $day = $phpgw->db->f(1) % 100; $time = $phpgw->db->f(2); if ($time > 0) { - $hour = $time / 10000; + $hour = intval($time / 10000); $minute = ($time / 100) % 100; } $duration = $phpgw->db->f(5); diff --git a/doc/CHANGELOG b/doc/CHANGELOG index 1250c7489c..1738347080 100755 --- a/doc/CHANGELOG +++ b/doc/CHANGELOG @@ -6,12 +6,12 @@ - Fixed changing of password not getting set in session table - email now displays "Could not open mailbox" if mailbox could not be opened (formerly displayed just "mailbox empty") - - Fixed displaying of repeated events by owner - Added ability to add/edit product status (inventory) - Fixed displaying of repeated calendar events by owner - Fixed displaying of calendar events to include group events - Converted more of the inventory program to use templates - Added a search field/add button when list products (inventory) + - Fixed editing of calendar entry with regards to start time [09072000] - Added print icon that allows you to print out a page without having the navbar. Thanks Sam Wynn Jr