Summary | Prevmonthlist omitting yesterday events |
Queue | Kronolith |
Queue Version | 4.2.21 |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | jan (at) horde (dot) org |
Requester | admin (at) layertec (dot) de |
Created | 05/09/2017 (3001 days ago) |
Due | |
Updated | 10/20/2017 (2837 days ago) |
Assigned | |
Resolved | 05/10/2017 (3000 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | 4.2.22 |
Patch | No |
commit 7c35b012f87cf983b530725e00b86f79acacb884
Author: Jan Schneider <jan@horde.org>
Date: Wed, 10 May 2017 17:58:25 +0200
[jan] Fix displaying yesterday's event in Prior Events portal block
(admin@layertec.de,
Bug #14638).M docs/CHANGES
M package.xml
https://github.com/horde/kronolith/commit/7c35b012f87cf983b530725e00b86f79acacb884
commit 23375d718b308f01950262ad00fb129bbfcc12f8
Author: Jan Schneider <jan@horde.org>
Date: Wed, 10 May 2017 17:50:13 +0200
Show yesterday's events too (
Bug #14638).M lib/Block/Prevmonthlist.php
https://github.com/horde/kronolith/commit/23375d718b308f01950262ad00fb129bbfcc12f8
commit 1ef42adb09f13a74fe1a01a43080deb3b257607d
Author: Jan Schneider <jan@horde.org>
Date: Wed May 10 17:58:25 2017 +0200
[jan] Fix displaying yesterday's event in Prior Events portal
block (admin@layertec.de,
Bug #14638).kronolith/docs/CHANGES | 27 +++++++++++++++++++++++++++
kronolith/package.xml | 42 +++++++++++++++++++++++++++++++++++++++++-
2 files changed, 68 insertions(+), 1 deletion(-)
http://github.com/horde/horde/commit/1ef42adb09f13a74fe1a01a43080deb3b257607d
commit 816f2ed5212e113f367411c5ea814accbe94d42f
Author: Jan Schneider <jan@horde.org>
Date: Wed May 10 17:50:13 2017 +0200
Show yesterday's events too (
Bug #14638).kronolith/lib/Block/Prevmonthlist.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
http://github.com/horde/horde/commit/816f2ed5212e113f367411c5ea814accbe94d42f
State ⇒ Resolved
Milestone ⇒ 4.2.22
commit 9f3b7769022c103331a6f6077f84e6621870a351
Author: Jan Schneider <jan@horde.org>
Date: Wed May 10 17:58:25 2017 +0200
[jan] Fix displaying yesterday's event in Prior Events portal
block (admin@layertec.de,
Bug #14638).kronolith/docs/CHANGES | 2 ++
kronolith/package.xml | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
http://github.com/horde/horde/commit/9f3b7769022c103331a6f6077f84e6621870a351
commit 4a081c49ea3f35072889d9dd15a4d20a6c52b16d
Author: Jan Schneider <jan@horde.org>
Date: Wed May 10 17:50:13 2017 +0200
Show yesterday's events too (
Bug #14638).kronolith/lib/Block/Prevmonthlist.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
http://github.com/horde/horde/commit/4a081c49ea3f35072889d9dd15a4d20a6c52b16d
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Prevmonthlist omitting yesterday events
Queue ⇒ Kronolith
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
The end date is determined correctly in line 70 but looping the days
stops one day too early in line 102. It should read
for ($i = 0; $i <= $days; ++$i) {
instead of
for ($i = 0; $i < $days; ++$i) {