|
From: <se...@us...> - 2002-08-21 13:44:18
|
Update of /cvsroot/memship/memship
In directory usw-pr-cvs1:/tmp/cvs-serv10681
Modified Files:
index.php
Added Files:
logout.php
Log Message:
Login authentication now works!
--- NEW FILE: logout.php ---
<?php
header("WWW-Authenticate: Basic realm=\":-!\"");
header("HTTP/1.0 401 Unauthorized");
include('includes/head.php');
?>
<p>Goodbye and <a href="index.php">welcome back</a>!</p>
<?php
include('includes/tail.php');
?>
Index: index.php
===================================================================
RCS file: /cvsroot/memship/memship/index.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** index.php 18 Aug 2002 13:33:06 -0000 1.4
--- index.php 21 Aug 2002 13:44:13 -0000 1.5
***************
*** 1,5 ****
<?php
! include('includes/liblogin.php');
! include('includes/head'.php');
?>
--- 1,5 ----
<?php
! include("includes/liblogin.php");
! include("includes/head.php");
?>
***************
*** 89,93 ****
<td>Mobilisering:</td><td><select name="krit[mobilisering]">
<option value="">Ingen</option>
! <?PHP
/*
$result = pg_exec("SELECT navn FROM arrangement");
--- 89,93 ----
<td>Mobilisering:</td><td><select name="krit[mobilisering]">
<option value="">Ingen</option>
! <?php
/*
$result = pg_exec("SELECT navn FROM arrangement");
***************
*** 123,127 ****
<option value="kontakt">kontakt</option>
<!-- obs bare for RU: -->
! <?PHP
/*
if ($ses_db==ru){
--- 123,127 ----
<option value="kontakt">kontakt</option>
<!-- obs bare for RU: -->
! <?php
/*
if ($ses_db==ru){
***************
*** 164,167 ****
<?php
! include('includes/tail.php');
?>
--- 164,167 ----
<?php
! include("includes/tail.php");
?>
|