Commit c7eb542d authored by Côme Chilliet's avatar Côme Chilliet
Browse files

Fixes #5322 removed last occurence of ldap::fix

Showing with 1 addition and 1 deletion
+1 -1
...@@ -126,7 +126,7 @@ class baseSelector { ...@@ -126,7 +126,7 @@ class baseSelector {
$elements = explode(',', substr($base, 0, strlen($base) - strlen($config->current['BASE']))); $elements = explode(',', substr($base, 0, strlen($base) - strlen($config->current['BASE'])));
$elements = array_reverse($elements, TRUE); $elements = array_reverse($elements, TRUE);
$this->pathMapping[$base] = (($base == $config->current['BASE']) ? '/' : ldap::fix(preg_replace('/(^|,)[a-z0-9]+=/i', '/', implode(',', $elements)))); $this->pathMapping[$base] = (($base == $config->current['BASE']) ? '/' : preg_replace('/(^|,)[a-z0-9]+=/i', '/', implode(',', $elements)));
} }
// Save bases to session for autocompletion // Save bases to session for autocompletion
......
  • bmortier @bmortier

    mentioned in issue #1698

    By Côme Chilliet on 2017-09-02T15:35:15 (imported from GitLab)

    ·

    mentioned in issue #1698

    By Côme Chilliet on 2017-09-02T15:35:15 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment