From 10375cb17b535657fe09bf02697dda3dd8d8aee0 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Mon, 21 Dec 2009 17:42:05 -0500 Subject: [PATCH] Fix deleting tags from non-ajax interface --- kronolith/lib/Ajax/Imple/TagActions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kronolith/lib/Ajax/Imple/TagActions.php b/kronolith/lib/Ajax/Imple/TagActions.php index 4a291e16c..4d5ed1346 100644 --- a/kronolith/lib/Ajax/Imple/TagActions.php +++ b/kronolith/lib/Ajax/Imple/TagActions.php @@ -98,7 +98,7 @@ class Kronolith_Ajax_Imple_TagActions extends Horde_Ajax_Imple_Base } foreach ($tags as $tag_id => $tag) { - $html .= '
  • ' . htmlspecialchars($tag) . ($hasEdit ? '' . Horde::img('delete-small.png', _("Remove Tag"), '', $GLOBALS['registry']->getImageDir('horde')) . '' : '') . '
  • '; + $html .= '
  • ' . htmlspecialchars($tag) . ($hasEdit ? '' . Horde::img('delete-small.png', _("Remove Tag"), '', $GLOBALS['registry']->getImageDir('horde')) . '' : '') . '
  • '; } return $html; -- 2.11.0