noalyss-commit
[Top][All Lists]
Advanced

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

[Noalyss-commit] [noalyss] 09/27: A div can not have a name


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 09/27: A div can not have a name
Date: Sun, 02 Nov 2014 11:08:47 +0000

sparkyx pushed a commit to branch master
in repository noalyss.

commit 84b9b1c38e2618e0f4ef68865405bd71bb452a57
Author: Dany De Bontridder <address@hidden>
Date:   Mon Oct 13 00:46:44 2014 +0200

    A div can not have a name
---
 include/class_ipopup.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/class_ipopup.php b/include/class_ipopup.php
index 1f20d6c..565a933 100644
--- a/include/class_ipopup.php
+++ b/include/class_ipopup.php
@@ -99,7 +99,7 @@ class IPopup extends HtmlInput
         $r="";
         if ($this->blocking)
         {
-            $r.=sprintf('<div id="%s_fond" name="fond" 
class="popup_back">',$this->name);
+            $r.=sprintf('<div id="%s_fond" class="popup_back">',$this->name);
             $r.="</div>";
         }
         $javascript=sprintf("javascript:hideIPopup('%s')",
@@ -108,14 +108,14 @@ class IPopup extends HtmlInput
 
         if ( isset($this->title) && trim($this->title) != "" )
         {
-            $r.=sprintf('<div name ="%s_border" id="%s_border" 
class="popup_border_title">',
+            $r.=sprintf('<div id="%s_border" id="%s_border" 
class="popup_border_title">',
                         $this->name,
                         $this->name);
             $r.=sprintf('<span id="%s_">%s</span>',$this->name,$this->title);
         }
         else
         {
-            $r.=sprintf('<div name ="%s_border" id="%s_border" 
class="popup_border_notitle">',
+            $r.=sprintf('<div id ="%s_border" id="%s_border" 
class="popup_border_notitle">',
                         $this->name,
                         $this->name);
         }
@@ -123,7 +123,7 @@ class IPopup extends HtmlInput
         $r.=sprintf('<a 
style="background-color:blue;color:white;text-decoration:none" 
href="%s">'._('Fermer').'</a></div>',
                     $javascript);
 
-        $r.=sprintf('<div name ="%s_content" id="%s_content" 
class="popup_content"> %s </div></div>',
+        $r.=sprintf('<div id ="%s_content" id="%s_content" 
class="popup_content"> %s </div></div>',
                     $this->name,
                     $this->name,
                     $this->value);



reply via email to

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