noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] 16/44: http_input : fix bug with array


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 16/44: http_input : fix bug with array
Date: Wed, 26 Dec 2018 04:29:53 -0500 (EST)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 14ea453731c65f90cffdd7ba429217bd3374c7c0
Author: Dany De Bontridder <address@hidden>
Date:   Fri Nov 23 23:10:50 2018 +0100

    http_input : fix bug with array
---
 include/lib/http_input.class.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/include/lib/http_input.class.php b/include/lib/http_input.class.php
index 3592270..5a5be5f 100644
--- a/include/lib/http_input.class.php
+++ b/include/lib/http_input.class.php
@@ -80,7 +80,9 @@ class HttpInput
                     throw new Exception(_("Type invalide")."[ $p_name ] = 
{$this->array[$p_name]}"
                 , EXC_PARAM_TYPE);
                 }
-                $this->array[$p_name]=h($this->array[$p_name]);
+                if (is_string($this->array )) {
+                    $this->array[$p_name]=h($this->array[$p_name]);
+                }
             }else {
                 throw new Exception(_("Unknown type"));
             }



reply via email to

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