From 1645fab10d0c35ca12a99c1a7ab8de47a0524aba Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Mon, 10 May 2010 14:44:25 +0200 Subject: [PATCH] Remove stray closing tag when displaying the date of completion. --- nag/docs/CHANGES | 3 ++- nag/templates/view/task.inc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nag/docs/CHANGES b/nag/docs/CHANGES index aa96666d7..6b251e6b0 100644 --- a/nag/docs/CHANGES +++ b/nag/docs/CHANGES @@ -15,7 +15,8 @@ v3.0-git v2.3.6-cvs ---------- -[mjr] Do not remove history entries when removing user data (Bug: 8755). +[jan] Remove stray closing tag when displaying the date of completion. +[mjr] Do not remove history entries when removing user data (Bug #8755). ------ diff --git a/nag/templates/view/task.inc b/nag/templates/view/task.inc index 1576a76b6..304ce4313 100644 --- a/nag/templates/view/task.inc +++ b/nag/templates/view/task.inc @@ -48,7 +48,7 @@ echo Horde::link(Horde::applicationUrl(Horde_Util::addParameter($taskurl, 'actionID', 'complete_task')), _("Mark as incomplete"), 'widget') . Horde::img('checked.png', _("Mark as incomplete")) . ''; } } else { - echo Nag::formatCompletion($task->completed) . ''; + echo Nag::formatCompletion($task->completed) . ''; } if (isset($completed)) { echo ' ' . strftime($prefs->getValue('date_format'), $completed) . ' ' . date($prefs->getValue('twentyFour') ? 'G:i' : 'g:i a', $completed) . ''; -- 2.11.0