X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/5b15a6f7796a86dfeaf9f41911e7cb112f2c6a97..8f4cd0518dde7c5c3862fd136827143dd8b3eb69:/sistema/www/sistemas/sistemas-datos.php diff --git a/sistema/www/sistemas/sistemas-datos.php b/sistema/www/sistemas/sistemas-datos.php index 6b7031d..53765f5 100644 --- a/sistema/www/sistemas/sistemas-datos.php +++ b/sistema/www/sistemas/sistemas-datos.php @@ -20,6 +20,7 @@ // $Id$ // + //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ $SAMURAI_PERM->setSistema(SAMURAI_PERM); if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) { @@ -68,10 +69,10 @@ $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones $FORM->addElement ('static', 'id_sistema' , 'Id Sistema' , $SISTEMA->getId() ); $FORM->addElement ('static', 'nombre' , 'Nombre' , $SISTEMA->getNombre() ); - $FORM->addElement ('static', 'descripcion', 'Descripcion' , $SISTEMA->getDescripcion()); + $FORM->addElement ('static', 'descripcion', 'DescripciĆ³n' , $SISTEMA->getDescripcion()); $FORM->addElement ('static', 'fch_inicio' , 'Fecha Inicio' , $fecha_inicio ); $FORM->addElement ('static', 'fch_fin' , 'Fecha Fin' , $fecha_fin ); - $FORM->addElement ('static', 'fch_imple' , 'Fecha Implementacion', $fecha_implementacion ); + $FORM->addElement ('static', 'fch_imple' , 'Fecha ImplementaciĆ³n', $fecha_implementacion ); $FORM->addElement ('static', 'contacto' , 'Contacto' , $SISTEMA->getContacto() ); $FORM->freeze(); // }}}