38 lines
912 B
PHP
38 lines
912 B
PHP
<?php
|
|
/**
|
|
* Time out page to be displayed on the right frame
|
|
*
|
|
* Variables that come in as GET vars:
|
|
* - server_id
|
|
*
|
|
* @package phpLDAPadmin
|
|
*/
|
|
|
|
/**
|
|
*/
|
|
|
|
require './common.php';
|
|
|
|
if (! isset($ldapserver))
|
|
header("Location: index.php");
|
|
|
|
include './header.php';
|
|
|
|
# If $session_timeout not defined, use ( session_cache_expire() - 1 )
|
|
$session_timeout = $ldapserver->session_timeout ? $ldapserver->session_timeout : session_cache_expire()-1;
|
|
?>
|
|
|
|
<h3 class="title"><?php echo $ldapserver->name; ?></h3>
|
|
<br />
|
|
<br />
|
|
<center>
|
|
<b><?php printf('%s %s %s',_('Your Session timed out after'),$session_timeout,_('min. of inactivity. You have been automatically logged out.')); ?></b>
|
|
<br />
|
|
<br />
|
|
<?php echo _('To log back in please click on the following link:'); ?><br />
|
|
<a href="login_form.php?server_id=<?php echo $ldapserver->server_id; ?>"><?php echo _('Login...'); ?></a>
|
|
</center>
|
|
|
|
</body>
|
|
</html>
|