]> git.llucax.com Git - mecon/ai.git/blobdiff - lib/AI/Form.php
- Se ordenan la mayoría de los resultados de las DB.
[mecon/ai.git] / lib / AI / Form.php
index 9cdb0a975986951ba89c732626be994366348f04..b74bd02ce3fbc530a2a8dbe713d4f63ec714ea24 100644 (file)
@@ -99,7 +99,7 @@ class AI_Form extends MECON_HTML_QuickForm {
             $tipos = array('' => '--', '0' => 'Página Principal') +
                 arbol2array(AI_DB::connect('../conf/DB.ini'),
                 ($tipo == 'grupo') ? 'grupo_secciones' : $tipo, 0, $tipo, 'nombre',
-                $tipo . '_padre');
+                $tipo . '_padre', 'ASC');
             $fPadre  =& $this->addElement('select', $padre, 'Padre', $tipos);
             $fNombre =& $this->addElement('text', 'nombre', 'Nombre');
             // Validación.
@@ -117,7 +117,7 @@ class AI_Form extends MECON_HTML_QuickForm {
             $fAntiguedad   =& $this->addElement('select', 'antiguedad', 'Antigüedad',
                 array(3 => '3 días', 1 => '1 día', 7 => '1 semana'));
             $fSecciones    =& $this->addElement('select', 'secciones', 'Secciones',
-                AI_GrupoSecciones::getSeccionesArray(),
+                AI_GrupoSecciones::getSeccionesArray(AI_DB::connect('../conf/DB.ini')),
                 array('multiple' => 'multiple', 'size' => 5));
             $fMostrarHijos =& $this->addElement('checkbox', 'mostrar_hijos', 'Mostrar hijos');
             // Validación.