git-svn-id: https://192.168.0.254/svn/Proyectos.LaFactoriaVerde_Web/trunk@4 017afc1c-778d-45dc-8efe-cc7a6876851a
28 lines
596 B
PHP
28 lines
596 B
PHP
<?php
|
|
session_start();
|
|
include("../config.php");
|
|
include("../functions.php");
|
|
if (allow_access(Administrators) != "yes")
|
|
{
|
|
header("Location:$base_dir/index.php");
|
|
}
|
|
?>
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
|
<title>Registro de accesos - La Factoría Verde</title>
|
|
</head>
|
|
|
|
<frameset cols="170,*">
|
|
<frame name="contents" target="main" src="log.html">
|
|
<frame name="main" src="log.php">
|
|
<noframes>
|
|
<body>
|
|
<p>This page uses frames, but your browser doesn't support them.</p>
|
|
</body>
|
|
</noframes>
|
|
</frameset>
|
|
</html>
|
|
|