phpldapadmin/collapse.php

48 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2009-06-30 09:22:30 +00:00
<?php
2009-06-30 09:24:29 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/collapse.php,v 1.12 2005/02/25 13:44:05 wurley Exp $
2009-06-30 08:05:37 +00:00
2009-06-30 09:24:29 +00:00
/**
2009-06-30 08:05:37 +00:00
* This script alters the session variable 'tree', collapsing it
2009-06-30 09:24:29 +00:00
* at the dn specified in the query string.
2009-06-30 08:05:37 +00:00
*
* Variables that come in as GET vars:
* - dn (rawurlencoded)
* - server_id
*
* Note: this script is equal and opposite to expand.php
2009-06-30 09:24:29 +00:00
* @package phpLDAPadmin
*/
/**
2009-06-30 08:05:37 +00:00
*/
2009-06-30 09:22:30 +00:00
require './common.php';
2009-06-30 08:05:37 +00:00
2009-06-30 09:24:29 +00:00
$server_id = (isset($_GET['server_id']) ? $_GET['server_id'] : '');
//$ldapserver = new LDAPServer($server_id);
//if( ! $ldapserver->haveAuthInfo())
// pla_error( $lang['not_enough_login_info'] );
2009-06-30 08:07:14 +00:00
$dn = $_GET['dn'];
2009-06-30 08:05:37 +00:00
$encoded_dn = rawurlencode( $dn );
2009-06-30 09:22:30 +00:00
initialize_session_tree();
2009-06-30 08:07:14 +00:00
2009-06-30 09:22:30 +00:00
if( array_key_exists( $dn, $_SESSION['tree'][$server_id] ) )
unset( $_SESSION['tree'][$server_id][$dn] );
2009-06-30 08:05:37 +00:00
// This is for Opera. By putting "random junk" in the query string, it thinks
// that it does not have a cached version of the page, and will thus
// fetch the page rather than display the cached version
$time = gettimeofday();
$random_junk = md5( strtotime( 'now' ) . $time['usec'] );
2009-06-30 08:07:14 +00:00
// If cookies were disabled, build the url parameter for the session id.
// It will be append to the url to be redirect
2009-06-30 09:24:29 +00:00
$id_session_param = "";
if (SID != "")
$id_session_param = "&".session_name()."=".session_id();
2009-06-30 08:05:37 +00:00
2009-06-30 08:09:20 +00:00
header( "Location:tree.php?foo=$random_junk#{$server_id}_{$encoded_dn}$id_session_param" );
2009-06-30 08:07:14 +00:00
?>