From b2eaf6abb6e346da1f78a40424d406b0d2eb8dff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Fri, 30 Mar 2018 17:49:02 -0300 Subject: [PATCH] Fix wrong function call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace PMA_isValid with Core::isValid Signed-off-by: MaurĂ­cio Meneghini Fauth --- db_central_columns.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_central_columns.php b/db_central_columns.php index e55d2aee54..0f92d3ab0c 100644 --- a/db_central_columns.php +++ b/db_central_columns.php @@ -110,7 +110,7 @@ if (isset($_POST['delete_save'])) { ); } if (!empty($_REQUEST['total_rows']) - && PMA_isValid($_REQUEST['total_rows'], 'integer') + && Core::isValid($_REQUEST['total_rows'], 'integer') ) { $total_rows = $_REQUEST['total_rows']; } else {