Summary | formatTime not defined |
Queue | Chora |
Queue Version | 2.1 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | jan (at) horde (dot) org |
Requester | horde (at) albasoft (dot) com |
Created | 11/17/2009 (5663 days ago) |
Due | |
Updated | 12/01/2009 (5649 days ago) |
Assigned | |
Resolved | 12/01/2009 (5649 days ago) |
Milestone | 2.1.1 |
Patch | Yes |
Assigned to Jan Schneider
State ⇒ Resolved
Milestone ⇒ 2.1.1
Fix method name when displaying patchsets (
Bug #8714).http://cvs.horde.org/diff.php/chora/docs/CHANGES?rt=horde&r1=1.100.2.21&r2=1.100.2.22&ty=u
http://cvs.horde.org/diff.php/chora/patchsets.php?rt=horde&r1=1.18.8.8&r2=1.18.8.9&ty=u
Priority ⇒ 1. Low
Patch ⇒ Yes
Milestone ⇒
Queue ⇒ Chora
Summary ⇒ formatTime not defined
Type ⇒ Bug
State ⇒ Unconfirmed
Fatal error: Call to undefined method Chora::formattime() in
<path>/horde/chora/patchsets.php on line 49
Should it be 'formatDate' ?
--- patchsets.php.ori 2009-11-17 19:57:53.000000000 +0100
+++ patchsets.php 2009-11-17 19:58:12.000000000 +0100
@@ -46,7 +46,7 @@
$patchsets = $ps->_patchsets;
krsort($patchsets);
foreach ($patchsets as $id => $patchset) {
- $commitDate = Chora::formatTime($patchset['date']);
+ $commitDate = Chora::formatDate($patchset['date']);
$readableDate = Chora::readableTime($patchset['date'], true);
$author = Chora::showAuthorName($patchset['author'], true);
if (is_a($VC, 'VC_svn')) {