diff options
author | thomascube <thomas@roundcube.net> | 2009-08-07 16:11:29 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-08-07 16:11:29 +0000 |
commit | c7a2e84a240e50f83a0222ad041b2197f97dffbc (patch) | |
tree | c1298fbf878fedb3b3b82613c65ce9fd7aa39dfe /plugins | |
parent | 24e219d1cca405a554156d1d195437b930ef919a (diff) |
Fix vcard_attachments plugin (#1486035)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/vcard_attachments/vcard_add_contact.png | bin | 0 -> 1361 bytes | |||
-rw-r--r-- | plugins/vcard_attachments/vcard_attachments.php | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/vcard_attachments/vcard_add_contact.png b/plugins/vcard_attachments/vcard_add_contact.png Binary files differnew file mode 100644 index 000000000..478c1f3f2 --- /dev/null +++ b/plugins/vcard_attachments/vcard_add_contact.png diff --git a/plugins/vcard_attachments/vcard_attachments.php b/plugins/vcard_attachments/vcard_attachments.php index da8ea1c15..532311e55 100644 --- a/plugins/vcard_attachments/vcard_attachments.php +++ b/plugins/vcard_attachments/vcard_attachments.php @@ -53,12 +53,12 @@ class vcard_attachments extends rcube_plugin $display .= ' <'.$vcard->email[0].'>'; // add box below messsage body - $p['content'] .= html::p(array('style' => "margin:1em; padding:0.5em; border:1px solid #999; width: auto;"), + $p['content'] .= html::p(array('style' => "margin:1em; padding:0.5em; border:1px solid #999; border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; width: auto;"), html::a(array( 'href' => "#", 'onclick' => "return plugin_vcard_save_contact('".JQ($this->vcard_part)."')", 'title' => "Save contact in local address book"), // TODO: localize this title - html::img(array('src' => '/images/buttons/add_contact_act.png', 'align' => "middle"))) + html::img(array('src' => $this->url('vcard_add_contact.png'), 'align' => "middle"))) . ' ' . html::span(null, Q($display))); $this->include_script('vcardattach.js'); |