noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 01/119: Fix warning with empty array


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 01/119: Fix warning with empty array
Date: Mon, 26 Oct 2020 18:26:58 -0400 (EDT)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 53b99cbf6386f449fa62a3d047b9b46ea6c8e782
Author: Dany De Bontridder <dany@alchimerys.be>
AuthorDate: Sat Jun 6 21:57:47 2020 +0200

    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 2447692..997cb26 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 "</TR>";
     }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]