} else {
foreach ($args as $arg) {
if (is_array($arg)) {
- if (array_intersect($arg, @$this->_permisos[$this->_sistema])) {
+ if (@array_intersect($arg, $this->_permisos[$this->_sistema])) {
return true;
}
} else {
- if (in_array($arg, @$this->_permisos[$this->_sistema])) {
+ if (@in_array($arg, $this->_permisos[$this->_sistema])) {
return true;
}
}