noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] 50/151: Deprecated HtmlInput::make_object mus


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 50/151: Deprecated HtmlInput::make_object must be replace by json_encode
Date: Sat, 4 Feb 2017 17:14:27 +0000 (UTC)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 98342a441e1721131444394ac01045582e8f8676
Author: Rachel <address@hidden>
Date:   Fri Dec 23 11:38:37 2016 +0100

    Deprecated HtmlInput::make_object must be replace by json_encode
---
 include/lib/class_html_input.php |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/include/lib/class_html_input.php b/include/lib/class_html_input.php
index ea00a49..74b313b 100755
--- a/include/lib/class_html_input.php
+++ b/include/lib/class_html_input.php
@@ -133,6 +133,7 @@ class HtmlInput
      * @return javascript string with the object
      * @note: there is not check on the key->value, so you could need to escape
      * special char as quote, single-quote...
+     * @deprecated 
      * @code
     $a=new IButton()
     $a->set_attribute('prop','1');
@@ -144,7 +145,7 @@ class HtmlInput
     echo $string => {'prop':'1','prop2':'2','prop3':'3'};
     @endcode
     */
-    public function make_object($p_name=null)
+    public function make_object_deprecated($p_name=null)
     {
         $name=($p_name != null)?$p_name.'=':'';
         if ( count($this->attribute) == 0) return $name."{}";



reply via email to

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