diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-28 20:09:17 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-28 20:09:17 -0800 |
commit | 864ce8e276220262ef8a26a9138c929145ccf57e (patch) | |
tree | af5c74437f55800fee39aa7c7b59ab9123205f8d /scripts | |
parent | 4a0413c0270bcac456c20972342c2c29182bec4e (diff) |
Fixes for status_network db object .ini and tag setter script
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/settag.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/settag.php b/scripts/settag.php index 1d7b60b90..e91d5eb50 100644 --- a/scripts/settag.php +++ b/scripts/settag.php @@ -50,7 +50,7 @@ if (empty($sn)) { $tags = $sn->getTags(); -$i = array_search($tags, $tag); +$i = array_search($tag, $tags); if ($i !== false) { if (have_option('d', 'delete')) { // Delete |