Remove stray closing tag when displaying the date of completion.
authorJan Schneider <jan@horde.org>
Mon, 10 May 2010 12:44:25 +0000 (14:44 +0200)
committerJan Schneider <jan@horde.org>
Mon, 10 May 2010 12:44:25 +0000 (14:44 +0200)
nag/docs/CHANGES
nag/templates/view/task.inc

index aa96666..6b251e6 100644 (file)
@@ -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).
 
 
 ------
index 1576a76..304ce43 100644 (file)
@@ -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")) . '</a>';
             }
         } else {
-            echo Nag::formatCompletion($task->completed) . '</a></td>';
+            echo Nag::formatCompletion($task->completed) . '</a>';
         }
         if (isset($completed)) {
             echo ' <small>' . strftime($prefs->getValue('date_format'), $completed) . ' ' . date($prefs->getValue('twentyFour') ? 'G:i' : 'g:i a', $completed) . '</small>';