prefix not table_prefix. Props Kafkaesqui. fixes #2528

git-svn-id: http://svn.automattic.com/wordpress/trunk@3604 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2006-03-03 20:36:40 +00:00
parent df35b1041b
commit eaea1c6e70
4 changed files with 18 additions and 18 deletions

View File

@@ -9,7 +9,7 @@ class WP_Roles {
function WP_Roles() {
global $wpdb;
$this->role_key = $wpdb->table_prefix . 'user_roles';
$this->role_key = $wpdb->prefix . 'user_roles';
$this->roles = get_option($this->role_key);
@@ -144,7 +144,7 @@ class WP_User {
}
$this->id = $this->ID;
$this->cap_key = $wpdb->table_prefix . 'capabilities';
$this->cap_key = $wpdb->prefix . 'capabilities';
$this->caps = &$this->{$this->cap_key};
if ( ! is_array($this->caps) )
$this->caps = array();
@@ -186,7 +186,7 @@ class WP_User {
}
function set_role($role) {
foreach($this->roles as $oldrole)
foreach($this->roles as $oldrole)
unset($this->caps[$oldrole]);
$this->caps[$role] = true;
$this->roles = array($role => true);
@@ -207,7 +207,7 @@ class WP_User {
function update_user_level_from_caps() {
global $wpdb;
$this->user_level = array_reduce(array_keys($this->allcaps), array(&$this, 'level_reduction'), 0);
update_usermeta($this->id, $wpdb->table_prefix.'user_level', $this->user_level);
update_usermeta($this->id, $wpdb->prefix.'user_level', $this->user_level);
}
function add_cap($cap, $grant = true) {