- $grupo = intval($this->grupo);
- $result = $db->query("SELECT * FROM grupo_secciones WHERE grupo_padre = $grupo");
- if (DB::isError($result)) {
- return $result;
- }
- $this->_hijos = array();
- $hijo = new GrupoSecciones;
- $err = $hijo->cargar($result);
- while (!PEAR::isError($err)) {
- $this->_hijos[] = $hijo->__clone();
- $err = $hijo->cargar($result);
+ static $conf;
+ if (!$conf) {
+ $conf = parse_ini_file(AI_GRUPOSECCIONES_CONFFILE, true);
+ $conf = $conf['mecondav'];