X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/4a91ae5069fc847c7f27e84a8449fbbd0742e2b2..14e2988c3bc7f1aaff41cd3b502e03ffa8daff89:/sistema/www/perfiles/perfiles-nuevo.php?ds=sidebyside
diff --git a/sistema/www/perfiles/perfiles-nuevo.php b/sistema/www/perfiles/perfiles-nuevo.php
index 1b5a5aa..a88f369 100644
--- a/sistema/www/perfiles/perfiles-nuevo.php
+++ b/sistema/www/perfiles/perfiles-nuevo.php
@@ -19,6 +19,11 @@
//
// $Id$
//
+//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
+ if (!$SAMURAI_PERM->tiene(SAMURAI_ALTA_PERFIL)) {
+// header('Location: error')
+ }
+//}}}
//REQUIRE_ONCE {{{
require_once 'PEAR.php';
@@ -101,7 +106,7 @@
}
}
if (PEAR::isError($res)) {
- $TABLA = new Tabla ('cellspacing=0');
+ $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
$row = array (''.$res->getMessage().'');
$TABLA->addRow($row,'align=left');
}
@@ -110,13 +115,12 @@
// }}}
//MUESTRO LA PAGINA {{{
//AGREGO LOS DATOS A LAS TABLAS {{{
- $TABLA3 = new Tabla ('cellspacing=0');
+ $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
$imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
$row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().'');
$TABLA3->addRow($row,'align=left');
//}}}
- $MARCO = new Marco ('../../conf/confSecciones.php');
$MARCO->addBody($TABLA3);
if (isset($TABLA)) {
$MARCO->addBody($TABLA);