X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/834bee1cf2c5bd122b3e941c70b5c2f03ee80a27..e0bb2a45e21778743b6985197fe24ee0d2374d60:/lib/MLIB/HTML/QuickForm.php?ds=inline diff --git a/lib/MLIB/HTML/QuickForm.php b/lib/MLIB/HTML/QuickForm.php index c5b52ca..3c65d62 100644 --- a/lib/MLIB/HTML/QuickForm.php +++ b/lib/MLIB/HTML/QuickForm.php @@ -1,16 +1,15 @@ $Id$ -----------------------------------------------------------------------------*/ -require_once 'MECON/HTML/QuickFormSimple.php'; -require_once 'MECON/HTML/QuickForm/Renderer/Tabla.php'; +require_once 'MLIB/HTML/QuickFormSimple.php'; +require_once 'MLIB/HTML/QuickForm/Renderer/Tabla.php'; /** * QuickForm de uso general del MECON. */ -class MECON_HTML_QuickForm extends MECON_HTML_QuickFormSimple { +class MLIB_HTML_QuickForm extends MLIB_HTML_QuickFormSimple { var $renderer; - function MECON_HTML_QuickForm($formName='', $method='post', $action='', $target='_self', $attributes=null) + function MLIB_HTML_QuickForm($formName='', $method='post', $action='', $target='_self', $attributes=null) { - parent::MECON_HTML_QuickFormSimple($formName, $method, $action, $target, $attributes); - $this->renderer =& new MECON_HTML_QuickForm_Renderer_Tabla(); + parent::MLIB_HTML_QuickFormSimple($formName, $method, $action, $target, $attributes); + $this->renderer =& new MLIB_HTML_QuickForm_Renderer_Tabla(); } function toHtml()