if ($this->exists($k)) {
$this->_attributes[$k] = array_unique(array_merge($this->_attributes[$k], $v));
} else {
- $this->_map[strtolower($k)] = $k;
+ $this->_map[Horde_String::lower($k)] = $k;
$this->_attributes[$k] = $v;
}
$ocl = substr($ocl, 4);
} else {
if ($options['casefold'] == 'upper') {
- $ocl = strtoupper($ocl);
+ $ocl = Horde_String::upper($ocl);
}
if ($options['casefold'] == 'lower') {
- $ocl = strtolower($ocl);
+ $ocl = Horde_String::lower($ocl);
}
$ocl = self::escapeDNValue(array($ocl));
$ocl = $ocl[0];