Browse Source

added session_save_path


			
			
				master
			
			
		
Roland Gruber 21 years ago
parent
commit
2a279c9e07
  1. 4
      lam/templates/logout.php
  2. 4
      lam/templates/main.php
  3. 3
      lam/templates/main_header.php

4
lam/templates/logout.php

@ -1,4 +1,4 @@
<?php
<?php
/*
$Id$
@ -25,6 +25,8 @@ $Id$
include_once("../lib/ldap.php");
// start session
session_save_path("../sess");
@session_start();
// close LDAP connection

4
lam/templates/main.php

@ -1,4 +1,4 @@
<?php
<?php
/*
$Id$
@ -27,7 +27,7 @@ echo ("<html>\n");
echo (" <head>\n");
echo ("<title>LDAP Account Manager</title>\n");
echo ("</head>\n");
echo ("<frameset rows=\"150,*\">\n");
echo ("<frameset rows=\"130,*\">\n");
echo ("<frame src=\"./main_header.php\" name=\"head\">\n");
echo ("<frame src=\"../lib/listusers.php\" name=\"mainpart\">\n");
echo ("<noframes>\n");

3
lam/templates/main_header.php

@ -1,4 +1,4 @@
<?php
<?php
/*
$Id$
@ -36,6 +36,7 @@ $Id$
<td width="100"><p align="right"><a href="./logout.php" target="_top"><? echo _("Logout") ?></a></p><br></td>
</tr>
</table>
<br>
<table border="0" align="center" width="600">
<tr>
<td width="200"><p align="center"><a href="../lib/listusers.php" target="mainpart"> <? echo _("Users");?> </a></p></td>

Loading…
Cancel
Save