'language' => 'es',
'cache' => 'false',
'simple' => 'true'));
+ $PAGE->addStyleSheet('/MECON/css/general_estilos.css');
$FORM = new MECON_HTML_QuickForm ('usuarios_datos','post','usuarios-datos');
$USUARIO = new SAMURAI_Usuario($DB, $_GET['login']);
}
//DIBUJO LA PAGINA {{{
$PAGE->addBodyContent($FORM);
- $PAGE->addBodyContent(new HTML_Image('/MECON/images/general_cerrar.gif', 'Cerrar', array ('border'=>'0', 'onClick'=>'self.close();return false;')));
+ $imagen = new HTML_Image('/MECON/images/general_cerrar.gif');
+ $PAGE->addBodyContent('<a href="" onClick=\'self.close();return false;\'>'.$imagen->toHtml().'</a>');
+ $PAGE->setTitle('Datos del Usuario');
$PAGE->display();
// }}}
//FIN