From 84a9f9231cc94fd2bd8045c956baa0d4686fb72e Mon Sep 17 00:00:00 2001 From: jennylee Date: Thu, 31 Oct 2013 11:12:29 -0400 Subject: [PATCH] BUG_12254 funcionalidad search en Datos de PMtables. Correccion de un error en la llamada de la funcion que realiza la busqueda. --- workflow/engine/controllers/pmTablesProxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/controllers/pmTablesProxy.php b/workflow/engine/controllers/pmTablesProxy.php index fccfdf689..86905ef7f 100755 --- a/workflow/engine/controllers/pmTablesProxy.php +++ b/workflow/engine/controllers/pmTablesProxy.php @@ -422,7 +422,7 @@ class pmTablesProxy extends HttpProxyController $table = $additionalTables->load( $httpData->id, true ); if ($filter != '') { - $result = $additionalTables::getAllData( $httpData->id, $start, $limit, true, $filter); + $result = $additionalTables->getAllData( $httpData->id, $start, $limit, true, $filter); } else { $result = $additionalTables->getAllData( $httpData->id, $start, $limit ); }