From 63835cd9df53f5fdfa714121a1045ac2b8b28b70 Mon Sep 17 00:00:00 2001 From: Lemings Date: Mon, 25 Feb 2013 21:07:14 +0200 Subject: [PATCH] Bug in getTagsIds Tags are not loaded in form field, because check allways fails. --- libraries/cms/tags/tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/cms/tags/tags.php b/libraries/cms/tags/tags.php index dc470b09ef2e5..8c1d1b747bf95 100644 --- a/libraries/cms/tags/tags.php +++ b/libraries/cms/tags/tags.php @@ -153,7 +153,7 @@ public function unTagItems($ids, $prefix, $tag) public function getTagIds($id, $prefix) { - if (empty($item->id)) + if (empty($id)) { return; }