From dca3e83212951982c59f002efc6c349f9d9c0ad2 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 25 Aug 2003 21:11:43 +0000 Subject: [PATCH] Se corrige bug. --- lib/SAMURAI/Perm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.43.0