yet another __construct
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 29 Apr 2022 09:05:28 +0000 (11:05 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Fri, 29 Apr 2022 09:05:28 +0000 (11:05 +0200)
plekit/php/form.php

index b5aa2de..48881ff 100644 (file)
@@ -161,7 +161,7 @@ class PlekitFormButton extends PlekitForm {
   var $button_text;
 
   function __construct ($full_url, $button_id, $button_text, $method="POST") {
-    $this->PlekitForm($full_url,array(),$method);
+    $this->__construct($full_url,array(),$method);
     $this->button_id=$button_id;
     $this->button_text=$button_text;
   }