SF Bug #3531956 - Search / Show Attributes must be lowercase
This commit is contained in:
parent
f1ed59a35e
commit
bbedf18b7e
@ -280,6 +280,8 @@ class QueryRender extends PageRender {
|
|||||||
|
|
||||||
# Iterate over each attribute for this entry
|
# Iterate over each attribute for this entry
|
||||||
foreach (explode(',',$ado) as $attr) {
|
foreach (explode(',',$ado) as $attr) {
|
||||||
|
$attr = strtolower($attr);
|
||||||
|
|
||||||
# Ignore DN, we've already displayed it.
|
# Ignore DN, we've already displayed it.
|
||||||
if ($attr == 'dn')
|
if ($attr == 'dn')
|
||||||
continue;
|
continue;
|
||||||
@ -459,7 +461,7 @@ class QueryRender extends PageRender {
|
|||||||
$results = array();
|
$results = array();
|
||||||
|
|
||||||
foreach (explode(',',$this->template->getAttrDisplayOrder()) as $attr)
|
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;
|
return $results;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user