diff options
author | alonso <alonso@us.es> | 2009-11-04 12:42:36 +0000 |
---|---|---|
committer | alonso <alonso@us.es> | 2009-11-04 12:42:36 +0000 |
commit | 9a2cda1e2364ce1e2449eaccca1b85e3052b51f9 (patch) | |
tree | c7b702dee72d84dd09b35a172e03082cb000d61d /admin/WebConsole/pagerror.php | |
parent | b0dc2e4f68d239ce72f138c47d5762973dfa851e (diff) |
git-svn-id: https://opengnsys.es/svn/trunk@490 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/pagerror.php')
-rw-r--r-- | admin/WebConsole/pagerror.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/admin/WebConsole/pagerror.php b/admin/WebConsole/pagerror.php new file mode 100644 index 00000000..ae989797 --- /dev/null +++ b/admin/WebConsole/pagerror.php @@ -0,0 +1,34 @@ +<? +// ************************************************************************************************************************************************* +// Aplicación WEB: ogAdmWebCon +// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla +// Fecha Creación: Diciembre-2003 +// Fecha Última modificación: Febrero-2005 +// Nombre del fichero: controlacceso.php +// Descripción :Este fichero implementa el control de acceso a la Aplicación en todas las p�inas +// ************************************************************************************************************************************************* +include_once("./includes/ctrlacc.php"); +//________________________________________________________________________________________________________ +$herror=0; +if (isset($_GET["herror"])) $herror=$_GET["herror"]; +//________________________________________________________________________________________________________ +?> +<HTML> + <TITLE> Administración web de aulas</TITLE> + <HEAD> + <LINK rel="stylesheet" type="text/css" href="estilos.css"> + </HEAD> + <BODY> + <? + echo '<SCRIPT LANGUAGE="JAVASCRIPT">'.chr(13); + echo ' var o=window.top;'.chr(13); + echo ' var ao=o.parent;'.chr(13); + echo ' while (o!=ao){ // Busca la primera ventana del navegador'.chr(13); + echo ' ao=o;'.chr(13); + echo ' o=o.parent;'; + echo ' };'.chr(13); + echo ' ao.location="'.$urlacceso.'?herror='.$herror.'";'.chr(13); + echo '</SCRIPT>'.chr(13); + ?> + </BODY> +</HTML> |