fixed editing of start time display

This commit is contained in:
skeeter 2000-09-15 00:14:42 +00:00
parent 79bf93969f
commit 7df2a3e5d8
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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 <sam.wynn@lmco.com>