noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] 24/44: Analytic accountancy : fix bug


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 24/44: Analytic accountancy : fix bug
Date: Wed, 26 Dec 2018 04:29:54 -0500 (EST)

sparkyx pushed a commit to branch master
in repository noalyss.

commit d166d35e85e3b50620966c4b711895ae4045da4d
Author: Dany De Bontridder <address@hidden>
Date:   Tue Nov 27 17:38:58 2018 +0100

    Analytic accountancy : fix bug
---
 include/lib/iselect.class.php | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/include/lib/iselect.class.php b/include/lib/iselect.class.php
index 72996cc..1d4837b 100644
--- a/include/lib/iselect.class.php
+++ b/include/lib/iselect.class.php
@@ -29,10 +29,21 @@
 require_once NOALYSS_INCLUDE.'/lib/html_input.class.php';
 class ISelect extends HtmlInput
 {
+    /**
+     * Constructor , $p_value is supposed to be an array
+     * @param string $p_name name of the element
+     * @param array $p_value
+     * @param DOMID $p_id
+     */
     function __construct($p_name="", $p_value="", $p_id="")
     {
         parent::__construct($p_name, $p_value, $p_id);
-        $this->value=[];
+        if ( $p_value =="" ) 
+            { 
+                $this->value=[]; 
+            } else {
+                $this->value=$p_value;
+            }
     }
     /*!\brief show the html  input of the widget*/
     public function input($p_name=null,$p_value=null)



reply via email to

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