From 740875e5cd55581f146fd1fbd2c4d4b904775832 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 13 Jun 2012 11:42:12 +0200 Subject: Add skin name to the (javascript) environment --- program/include/rcube_config.php | 12 ++++++++---- program/include/rcube_output_html.php | 4 +++- 2 files changed, 11 insertions(+), 5 deletions(-) (limited to 'program/include') diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index 34c61c58d..1b621e0fc 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -71,10 +71,14 @@ class rcube_config $this->load_host_config(); // set skin (with fallback to old 'skin_path' property) - if (empty($this->prop['skin']) && !empty($this->prop['skin_path'])) - $this->prop['skin'] = str_replace('skins/', '', unslashify($this->prop['skin_path'])); - else if (empty($this->prop['skin'])) - $this->prop['skin'] = 'default'; + if (empty($this->prop['skin'])) { + if (!empty($this->prop['skin_path'])) { + $this->prop['skin'] = str_replace('skins/', '', unslashify($this->prop['skin_path'])); + } + else { + $this->prop['skin'] = 'default'; + } + } // fix paths $this->prop['log_dir'] = $this->prop['log_dir'] ? realpath(unslashify($this->prop['log_dir'])) : INSTALL_PATH . 'logs'; diff --git a/program/include/rcube_output_html.php b/program/include/rcube_output_html.php index fce9615cf..7ceea1839 100644 --- a/program/include/rcube_output_html.php +++ b/program/include/rcube_output_html.php @@ -68,7 +68,9 @@ class rcube_output_html extends rcube_output $this->set_env('x_frame_options', $this->config->get('x_frame_options', 'sameorigin')); // load the correct skin (in case user-defined) - $this->set_skin($this->config->get('skin')); + $skin = $this->config->get('skin'); + $this->set_skin($skin); + $this->set_env('skin', $skin); // add common javascripts $this->add_script('var '.rcmail::JS_OBJECT_NAME.' = new rcube_webmail();', 'head_top'); -- cgit v1.2.3 From afaccf14287d06eb7bb5e33cf131b14289040865 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 13 Jun 2012 12:12:53 +0200 Subject: Fix removing contact photo using LDAP addressbook (#1488420) --- CHANGELOG | 1 + program/include/rcube_ldap.php | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'program/include') diff --git a/CHANGELOG b/CHANGELOG index 3ac39c3ee..12e4dbf96 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix removing contact photo using LDAP addressbook (#1488420) - Fix storing X-ANNIVERSARY date in vCard format (#1488527) - Update to Mail_Mime-1.8.5 (#1488521) - Fix Shift + delete button does not permanently delete messages (#1488243) diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php index f799df2bb..8f23a406b 100644 --- a/program/include/rcube_ldap.php +++ b/program/include/rcube_ldap.php @@ -1191,8 +1191,11 @@ class rcube_ldap extends rcube_addressbook else if ($val == '') { // Field supplied is empty, verify that it is not required. if (!in_array($fld, $this->prop['required_fields'])) { - // It is not, safe to clear. - $deletedata[$fld] = $old_data[$fld]; + // ...It is not, safe to clear. + // #1488420: Workaround "ldap_mod_del(): Modify: Inappropriate matching in..." + // jpegPhoto attribute require an array() here. It looks to me that it works for other attribs too + $deletedata[$fld] = array(); + //$deletedata[$fld] = $old_data[$fld]; } } else { -- cgit v1.2.3