]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se cambia el constructor para sobreescribir primero las opciones usadas más frecuente...
authorGonzalo Merayo <merayo@gmail.com>
Thu, 3 Jul 2003 19:27:54 +0000 (19:27 +0000)
committerGonzalo Merayo <merayo@gmail.com>
Thu, 3 Jul 2003 19:27:54 +0000 (19:27 +0000)
lib/MECON/HTML/QuickForm.php
test/HTML/prueba_html_quickform_renderer_tabla.php

index 1c7763db12088d5870cf5ed5b63f263d397bcea9..e8019b53574bd2d1dfc935cfb71798e7071306f2 100644 (file)
@@ -35,7 +35,7 @@ require_once 'MECON/HTML/QuickForm/Renderer/Tabla.php';
  */
 class MECON_HTML_QuickForm extends HTML_QuickForm {
     var $_rendererOpts = array();
-    function MECON_HTML_QuickForm($formName='', $method='post', $action='', $target='_self', $attributes=null)
+    function MECON_HTML_QuickForm($action='', $formName='', $target='_self', $method='post', $attributes=null)
     {
         parent::HTML_QuickForm($formName, $method, $action, $target, $attributes);
         $this->registerElementType('mdate', 'MECON/HTML/QuickForm/mdate.php', 'HTML_QuickForm_mdate');
index cc8ad0850fd049aa554801691920f29727ff93f3..3b81655a77ff36163b6f65a5d7c515aa714f65fc 100644 (file)
@@ -8,7 +8,7 @@
 
     require_once 'MECON/HTML/QuickForm.php';
 
-    $form = new MECON_HTML_QuickForm('test');
+    $form = new MECON_HTML_QuickForm();
 
     //Agrega los elementos comunes a todas las opciones
     $form->addElement('header','cabecera', 'Título del formulario');