source: admin/WebConsole/pagerror.php @ 1a22cd2

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacionwebconsole3
Last change on this file since 1a22cd2 was 6e9cc32, checked in by ramon <ramongomez@…>, 15 years ago

Borrar caracteres BOM de UTF-8 en ficheros PHP de WebConsole?.

git-svn-id: https://opengnsys.es/svn/trunk@514 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 1.5 KB
Line 
1<?
2// *************************************************************************************************************************************************
3// Aplicación WEB: ogAdmWebCon
4// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
5// Fecha Creación: Diciembre-2003
6// Fecha Última modificación: Febrero-2005
7// Nombre del fichero: controlacceso.php
8// Descripción :Este fichero implementa el control de acceso a la Aplicación en todas las p�inas
9// *************************************************************************************************************************************************
10include_once("./includes/ctrlacc.php");
11//________________________________________________________________________________________________________
12$herror=0;
13if (isset($_GET["herror"])) $herror=$_GET["herror"];
14//________________________________________________________________________________________________________
15?>
16<HTML>
17        <TITLE> Administración web de aulas</TITLE>
18        <HEAD>
19                <LINK rel="stylesheet" type="text/css" href="estilos.css">
20        </HEAD>
21        <BODY>
22                <?
23                        echo '<SCRIPT LANGUAGE="JAVASCRIPT">'.chr(13);
24                        echo '  var o=window.top;'.chr(13);
25                        echo '  var ao=o.parent;'.chr(13);
26                        echo '  while (o!=ao){ // Busca la primera ventana del navegador'.chr(13);
27                        echo '   ao=o;'.chr(13);
28                        echo '   o=o.parent;';
29                        echo '   };'.chr(13);
30                        echo '  ao.location="'.$urlacceso.'?herror='.$herror.'";'.chr(13);
31                        echo '</SCRIPT>'.chr(13);
32                ?>
33        </BODY>
34</HTML>
Note: See TracBrowser for help on using the repository browser.