mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
fixed editing of start time display
This commit is contained in:
parent
79bf93969f
commit
7df2a3e5d8
@ -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);
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user