Skip to content

Commit

Permalink
match phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Jul 26, 2014
1 parent d2254cf commit dfed3fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/Prefs/lib/Horde/Prefs/Identity.php
Expand Up @@ -300,13 +300,13 @@ public function isLocked()
*
* @return boolean True if the $value was found in $key.
*/
public function hasValue($key, $valueA)
public function hasValue($key, $value)
{
$list = $this->getAll($key);

foreach ($list as $valueB) {
if (!empty($valueB) &&
strpos(Horde_String::lower($valueA), Horde_String::lower($valueB)) !== false) {
strpos(Horde_String::lower($value), Horde_String::lower($valueB)) !== false) {
return true;
}
}
Expand Down

0 comments on commit dfed3fa

Please sign in to comment.