Fix typos in is_role() and get_userdata(). fixes #1509 Props: mdawaffe

git-svn-id: https://develop.svn.wordpress.org/trunk@2711 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2005-07-14 22:58:58 +00:00
parent ffdd8033aa
commit 6059fcf644
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -62,9 +62,9 @@ class WP_Roles {
return $this->role_names;
}
function is_role($caps)
function is_role($role)
{
return empty($this->role_names[$cap]);
return empty($this->role_names[$role]);
}
}