From: Michael J. Rubinsky Date: Mon, 21 Dec 2009 22:42:05 +0000 (-0500) Subject: Fix deleting tags from non-ajax interface X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=10375cb17b535657fe09bf02697dda3dd8d8aee0;p=horde.git Fix deleting tags from non-ajax interface --- 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;