From f6d1309d4e816bdf8e1bda1fb65e30c7053fa0d8 Mon Sep 17 00:00:00 2001 From: Kenio de Souza Date: Tue, 29 Jul 2025 14:27:44 -0300 Subject: [PATCH] =?UTF-8?q?Atualiza=C3=A7=C3=A3o=20Companies.class.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vendor/view/companies/companies_datagrid.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/view/companies/companies_datagrid.php b/vendor/view/companies/companies_datagrid.php index fc1d17c..5b4ccba 100644 --- a/vendor/view/companies/companies_datagrid.php +++ b/vendor/view/companies/companies_datagrid.php @@ -33,7 +33,7 @@ if($Main->verifyToken()){ /** Parâmetros de paginação **/ $typeSearch = strtolower(isset($_POST['type-search']) ? (int)$Main->antiInjection( filter_input(INPUT_POST,'type-search', FILTER_SANITIZE_SPECIAL_CHARS) ) : 7); - $search = strtolower(isset($_POST['search']) ? (string)$Main->antiInjection( filter_input(INPUT_POST,'search', FILTER_SANITIZE_SPECIAL_CHARS) ) : ''; + $search = strtolower(isset($_POST['search']) ? (string)$Main->antiInjection( filter_input(INPUT_POST,'search', FILTER_SANITIZE_SPECIAL_CHARS) ) : ''); $start = strtolower(isset($_POST['start']) ? (int)$Main->antiInjection( filter_input(INPUT_POST,'start', FILTER_SANITIZE_SPECIAL_CHARS) ) : 0); $page = strtolower(isset($_POST['page']) ? (int)$Main->antiInjection( filter_input(INPUT_POST,'page', FILTER_SANITIZE_SPECIAL_CHARS) ) : 0); $max = $config->{'app'}->{'datagrid'}->{'rows'};