SF Bug #3531956 - Search / Show Attributes must be lowercase
This commit is contained in:
parent
f1ed59a35e
commit
bbedf18b7e
@ -247,8 +247,8 @@ class Query extends xmlTemplate {
|
||||
# If our display order is empty, then dynamically build it
|
||||
if (! count($result)) {
|
||||
foreach ($this->results as $details)
|
||||
foreach ($details as $attrs)
|
||||
$result = array_merge($result,array_keys(array_change_key_case($attrs)));
|
||||
foreach ($details as $attrs)
|
||||
$result = array_merge($result,array_keys(array_change_key_case($attrs)));
|
||||
|
||||
$result = array_unique($result);
|
||||
sort($result);
|
||||
|
@ -280,6 +280,8 @@ class QueryRender extends PageRender {
|
||||
|
||||
# Iterate over each attribute for this entry
|
||||
foreach (explode(',',$ado) as $attr) {
|
||||
$attr = strtolower($attr);
|
||||
|
||||
# Ignore DN, we've already displayed it.
|
||||
if ($attr == 'dn')
|
||||
continue;
|
||||
@ -459,7 +461,7 @@ class QueryRender extends PageRender {
|
||||
$results = array();
|
||||
|
||||
foreach (explode(',',$this->template->getAttrDisplayOrder()) as $attr)
|
||||
$results[$attr] = $attribute_factory->newAttribute($attr,array('values'=>array()),$this->getServerID());
|
||||
$results[strtolower($attr)] = $attribute_factory->newAttribute($attr,array('values'=>array()),$this->getServerID());
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user