aboutsummaryrefslogtreecommitdiff
path: root/actions/deletetag.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-10-02 11:37:03 +0000
committerCash Costello <cash.costello@gmail.com>2009-10-02 11:37:03 +0000
commite1652f241d7ef5e4641af27fae22240232787568 (patch)
tree62d2318700c214e4b5dfc59ec7c6d7d5f4371474 /actions/deletetag.php
parent364ea2fc085056d842e8aa6a3823a6b3084e229f (diff)
downloadelgg-e1652f241d7ef5e4641af27fae22240232787568.tar.gz
elgg-e1652f241d7ef5e4641af27fae22240232787568.tar.bz2
fixed delete tags bug
Diffstat (limited to 'actions/deletetag.php')
-rw-r--r--actions/deletetag.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/deletetag.php b/actions/deletetag.php
index 748d00380..3a76f6e99 100644
--- a/actions/deletetag.php
+++ b/actions/deletetag.php
@@ -23,10 +23,10 @@
forward($_SERVER['HTTP_REFERER']);
}
- foreach ($tags as $id => $value) {
+ foreach ($tags as $id => $value) {
// delete normal tag if it exists
if (is_array($image->tags)) {
- $index = array_search($value[0], $image->tags);
+ $index = array_search($value, $image->tags);
if ($index !== false) {
$tagarray = $image->tags;
unset($tagarray[$index]);
@@ -34,7 +34,7 @@
$image->tags = $tagarray;
}
} else {
- if ($value[0] === $image->tags) {
+ if ($value === $image->tags) {
$image->clearMetadata('tags');
}
}