Jaxel |
08-26-2006 05:07 PM |
config.php AVATAR settings dont work in VB36
Code:
//Avatar settings
'avatars' => array(
'mod_only' => 'smi_admin,smi_moderator',
// for standard users (& customers, if using support mode)
'user' => array(
'male' => array(
'mainchat' => array(
'default_value' => 'smi_male', // a smilie code
'default_state' => false, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
'room' => array(
'default_value' => 'smi_male', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
),
'female' => array(
'mainchat' => array(
'default_value' => 'smi_female', // a smilie code
'default_state' => false, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
'room' => array(
'default_value' => 'smi_female', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
),
),
// for administrators
'admin' => array(
'male' => array(
'mainchat' => array(
'default_value' => 'smi_admin', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
'room' => array(
'default_value' => 'smi_admin', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
),
'female' => array(
'mainchat' => array(
'default_value' => 'smi_admin', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
'room' => array(
'default_value' => 'smi_admin', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
),
),
// for moderators
'moderator' => array(
'male' => array(
'mainchat' => array(
'default_value' => 'smi_moderator', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
'room' => array(
'default_value' => 'smi_moderator', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
),
'female' => array(
'mainchat' => array(
'default_value' => 'smi_moderator', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
'room' => array(
'default_value' => 'smi_moderator', // a smilie code
'default_state' => true, // true = checked/on by default
'allow_override' => false, // if false, cannot be changed (combo box is disabled)
),
),
),
),
According to these settings... all users should be forced to specific avatars and be unable to change them. Including admins. As an admin, it works, I am forced to a specific avatar and unable to change it. However, normal users still have the ability to change their avatars. Its just not working; I had these settings up for a few days now and users are still able to change their chat avatars.
|