[eluser]Christophe-France[/eluser]
the problem is in the application/libraries/Auth file :
if($single == TRUE && $user_level == $level)
{
return TRUE;
}
else
{
show_error($this->CI->lang->line('insufficient_privs'));
}
elseif($user_level <= $level)
{
return TRUE;
}
else
{
show_error($this->CI->lang->line('insufficient_privs'));
}
Just remove the first "else" condition, and it should work ;o)