From 53b99cbf6386f449fa62a3d047b9b46ea6c8e782 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sat, 6 Jun 2020 21:57:47 +0200 Subject: [PATCH] Fix warning with empty array --- include/param_sec.inc.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/include/param_sec.inc.php b/include/param_sec.inc.php index 244769209..997cb2649 100644 --- a/include/param_sec.inc.php +++ b/include/param_sec.inc.php @@ -109,11 +109,13 @@ if ( ! isset($_REQUEST['action'])) echo td($l_line['use_name']); echo td($l_line['use_first_name']); echo td($profile); - // status of security on ledger and action - $a_sec=$cn->get_row("select us_ledger,us_action from user_active_security where us_login =$1", + // status of security on ledger and action + $a_sec=$cn->get_row("select us_ledger,us_action from user_active_security where us_login =$1", [$l_line['use_login']]); - echo td($a_sec['us_ledger']); - echo td($a_sec['us_action']); + if ( ! empty ($a_sec)) { + echo td($a_sec['us_ledger']); + echo td($a_sec['us_action']); + } echo td($str); echo ""; }