diff options
author | Daniel Hoffend <dh@dotlan.net> | 2021-09-02 08:08:09 +0200 |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2021-09-02 08:08:09 +0200 |
commit | 3705bf348699e7bc8785ca174d9f4b3cf66fc165 (patch) | |
tree | 9b88c65c654debcbc84b5d09de0143c3905a78ae | |
parent | d2ccdefe6c7bfcd33a7a46feed380cc9a3deff40 (diff) | |
download | webadmin-3705bf348699e7bc8785ca174d9f4b3cf66fc165.tar.gz |
kolab_api_service: fix typo in variable name
Summary: Fixes typo to make object_type detection works again. This fixes T6694
Test Plan:
Create a shared calendar folder via webadmin. Try to edit
the previously created shared folder. The form for shared addressbook
and its title is shown.
Reviewers: #web_administration_panel_developers, vanmeeuwen, machniak
Reviewed By: #web_administration_panel_developers, machniak
Maniphest Tasks: T6694
Differential Revision: https://git.kolab.org/D2860
-rw-r--r-- | lib/kolab_api_service.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kolab_api_service.php b/lib/kolab_api_service.php index 6390b3c..81d5b5d 100644 --- a/lib/kolab_api_service.php +++ b/lib/kolab_api_service.php @@ -179,7 +179,7 @@ abstract class kolab_api_service $value = implode('', $value); } else if (is_string($value)) { - $value = $this->conf->expand($_value, $custom = Array('base_dn' => $this->base_dn())); + $value = $this->conf->expand($value, $custom = Array('base_dn' => $this->base_dn())); } if (is_array($v)) { |