]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/perfiles/perfiles-datos.php
(no commit message)
[mecon/samurai.git] / sistema / www / perfiles / perfiles-datos.php
index 1ffb1a61d487265edba5c4429889242e0e27ed3c..d85cc6c24956444b6d5b2e3bfbd562f962a1c336 100644 (file)
@@ -45,6 +45,7 @@
                                         'language' => 'es',
                                         'cache'    => 'false',
                                         'simple'   => 'true'));
+        $PAGE->addStyleSheet('/MECON/css/general_estilos.css');
         $FORM    = new MECON_HTML_QuickForm ('perfil_datos','post','perfil-datos');
         $PERFIL  = new SAMURAI_Perfil($DB, $_GET['id_perfil']);
         $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
@@ -71,7 +72,7 @@
         case 'D':   $TipoPerfil = 'Dios';
                     break;
     }
-//}}]
+//}}}
 
 //AGREGO LOS ELEMENTOS AL FORM {{{
     $FORM->addElement         ('static', 'id_perfil'  , 'Id Perfil'    , $PERFIL->getId()              );
@@ -84,7 +85,9 @@
 
 //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 Perfil');
     $PAGE->display();                          
 // }}}
 //FIN