diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-05-07 13:51:23 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-05-07 13:51:23 +0200 |
commit | 2193f6a1301edcb62de6f0cf338acccdbf5ec2f1 (patch) | |
tree | 61ccde7d0088c2a5c7274ccdaa2e2fcd91104fed /plugins/vcard_attachments | |
parent | ef1d6525c2333794d954ccce33de1bcd533f85c8 (diff) |
Avoid unused local variables
Diffstat (limited to 'plugins/vcard_attachments')
-rw-r--r-- | plugins/vcard_attachments/vcard_attachments.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/vcard_attachments/vcard_attachments.php b/plugins/vcard_attachments/vcard_attachments.php index 4905b373e..cf7e22d3a 100644 --- a/plugins/vcard_attachments/vcard_attachments.php +++ b/plugins/vcard_attachments/vcard_attachments.php @@ -45,7 +45,7 @@ class vcard_attachments extends rcube_plugin } } // the same with message bodies - foreach ((array)$this->message->parts as $idx => $part) { + foreach ((array)$this->message->parts as $part) { if ($this->is_vcard($part)) { $this->vcard_parts[] = $part->mime_id; $this->vcard_bodies[] = $part->mime_id; @@ -63,7 +63,6 @@ class vcard_attachments extends rcube_plugin function html_output($p) { $attach_script = false; - $icon = 'plugins/vcard_attachments/' .$this->local_skin_path(). '/vcard_add_contact.png'; foreach ($this->vcard_parts as $part) { $vcards = rcube_vcard::import($this->message->get_part_content($part, null, true)); |