Remove ugly whitespace. Props abhay. fixes #1996

git-svn-id: https://develop.svn.wordpress.org/trunk@3250 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-11-30 21:13:18 +00:00
parent 4a4598bbdb
commit ba38c0c3c4
1 changed files with 4 additions and 3 deletions

View File

@ -26,8 +26,9 @@ class WP_Roles {
if ( isset($this->roles[$role]) )
return;
$this->roles[$role] = array('name' => $display_name,
'capabilities' => $capabilities);
$this->roles[$role] = array(
'name' => $display_name,
'capabilities' => $capabilities);
update_option($this->role_key, $this->roles);
$this->role_objects[$role] = new WP_Role($role, $capabilities);
$this->role_names[$role] = $display_name;
@ -369,4 +370,4 @@ function user_can_edit_user($user_id, $other_user) {
return false;
}
?>
?>