diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2011-04-24 07:15:30 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2011-04-24 07:15:30 -0700 |
commit | 7f48671186a4bf3a4745cd7a31b48a891dd83078 (patch) | |
tree | dcb608a58f9e664bd9e8f02139d959b34baeadfc /modules | |
parent | b57dd202db3c4b007e83aff3df9da7920691d76d (diff) |
For ticket #1701. Remove unused variable.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/tag/controllers/admin_tags.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/tag/controllers/admin_tags.php b/modules/tag/controllers/admin_tags.php index 7a64f7ab..77b5f20a 100644 --- a/modules/tag/controllers/admin_tags.php +++ b/modules/tag/controllers/admin_tags.php @@ -87,7 +87,6 @@ class Admin_Tags_Controller extends Admin_Controller { $old_name = $tag->name; $new_name_or_list = $in_place_edit->value(); $tag_list = explode(",", $new_name_or_list); - $tag_count = count($tag_list); $tag->name = array_shift($tag_list); $tag->save(); |