fixed duplicate search attributes

This commit is contained in:
Roland Gruber 2006-08-07 16:26:19 +00:00
parent d844152a0b
commit ffa9f0bee1
1 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,8 @@ function getSelfServiceSearchAttributes($scope) {
$attributes = $m->getSelfServiceSearchAttributes();
$return = array_merge($return, $attributes);
}
$return = array_unique($return);
$return = array_values($return);
return $return;
}