Remove duplicates in a better way
This commit is contained in:
parent
4e7aa33598
commit
45b747f13b
|
@ -154,25 +154,19 @@ class UserItem
|
|||
continue;
|
||||
}
|
||||
|
||||
// Add the profile if it wasn't already added
|
||||
if (!in_array($profile, $profiles)) {
|
||||
// Add the profile
|
||||
$profiles[] = $profile;
|
||||
}
|
||||
|
||||
// Add the normalized form
|
||||
$profile = Strings::normaliseLink($profile);
|
||||
if (!in_array($profile, $profiles)) {
|
||||
$profiles[] = $profile;
|
||||
}
|
||||
|
||||
// Add the SSL form
|
||||
$profile = str_replace('http://', 'https://', $profile);
|
||||
if (!in_array($profile, $profiles)) {
|
||||
$profiles[] = $profile;
|
||||
}
|
||||
}
|
||||
|
||||
return $profiles;
|
||||
return array_unique($profiles);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue