From: Leandro Lucarella Date: Mon, 25 Aug 2003 21:11:43 +0000 (+0000) Subject: Se corrige bug. X-Git-Tag: svn_import~89 X-Git-Url: https://git.llucax.com/mecon/samurai.git/commitdiff_plain/dca3e83212951982c59f002efc6c349f9d9c0ad2?ds=inline Se corrige bug. --- diff --git a/lib/SAMURAI/Perm.php b/lib/SAMURAI/Perm.php index 3533f68..a8148ae 100644 --- a/lib/SAMURAI/Perm.php +++ b/lib/SAMURAI/Perm.php @@ -147,7 +147,7 @@ Si no se pasa ningun parametro ($perm->tiene()), devuelve true si tiene un permi function chequear() // ~X2C { $args = func_get_args(); - if (!call_user_method_array(array($this, 'tiene'), $args)) { + if (!call_user_func_array(array($this, 'tiene'), $args)) { include 'MECON/includes/no_autorizado.html'; exit; }