RELEASE 0.9.6a

This commit is contained in:
Deon George 2009-06-30 19:25:05 +10:00
parent 7ff3528665
commit e126518f60
8 changed files with 15 additions and 13 deletions

View File

@ -1 +1 @@
0.9.6 0.9.6a

View File

@ -1,5 +1,5 @@
<? <?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/hooks.php,v 1.4 2005/03/05 09:38:46 wurley Exp $ // $Header: /cvsroot/phpldapadmin/phpldapadmin/hooks.php,v 1.5 2005/04/05 07:34:24 wurley Exp $
/** /**
* Functions related to hooks management. * Functions related to hooks management.

View File

@ -1,5 +1,5 @@
<?php <?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/lang/recoded/zh-cn.php,v 1.2 2005/03/25 01:21:31 wurley Exp $ // $Header: /cvsroot/phpldapadmin/phpldapadmin/lang/recoded/zh-cn.php,v 1.3 2005/04/05 07:33:23 wurley Exp $
// Translate to Simplified Chinese, by ÕÅѩƽ(heromyth), from zxpmyth@yahoo.com.cn // Translate to Simplified Chinese, by ÕÅѩƽ(heromyth), from zxpmyth@yahoo.com.cn
// Based on en.php,v 1.119 2005/03/16 20:57:45 // Based on en.php,v 1.119 2005/03/16 20:57:45

View File

@ -1,4 +1,4 @@
<? <?php
/* --- INSTRUCTIONS FOR TRANSLATORS --- /* --- INSTRUCTIONS FOR TRANSLATORS ---
* *

View File

@ -1,4 +1,4 @@
<? <?php
/* --- INSTRUCTIONS FOR TRANSLATORS --- /* --- INSTRUCTIONS FOR TRANSLATORS ---
* *

View File

@ -1,5 +1,5 @@
<?php <?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/login.php,v 1.40 2005/03/16 11:20:25 wurley Exp $ // $Header: /cvsroot/phpldapadmin/phpldapadmin/login.php,v 1.41 2005/04/03 09:24:41 wurley Exp $
/** /**
* For servers whose auth_type is set to 'cookie' or 'session'. Pass me the login info * For servers whose auth_type is set to 'cookie' or 'session'. Pass me the login info
@ -58,9 +58,11 @@ elseif ( $ldapserver->isLoginAttrEnabled() ) {
// the DN to use when searching for the login_attr user. // the DN to use when searching for the login_attr user.
$ldapserver->auth_type = 'config'; $ldapserver->auth_type = 'config';
// search for the "uid" first, this will be an anonymous bind.
set_error_handler( 'temp_login_error_handler' ); set_error_handler( 'temp_login_error_handler' );
$ldapserver->connect(true,true); if ($ldapserver->login_dn)
$ldapserver->connect(true,false);
else
$ldapserver->connect(true,true);
restore_error_handler(); restore_error_handler();
if (!empty($servers[$ldapserver->server_id]['login_class'])) { if (!empty($servers[$ldapserver->server_id]['login_class'])) {

View File

@ -1,5 +1,5 @@
<?php <?php
/* $Header: /cvsroot/phpldapadmin/phpldapadmin/server_functions.php,v 1.9 2005/03/25 15:45:01 wurley Exp $ */ /* $Header: /cvsroot/phpldapadmin/phpldapadmin/server_functions.php,v 1.10 2005/04/05 07:46:24 wurley Exp $ */
/** /**
* Classes and functions for LDAP server configuration and capability * Classes and functions for LDAP server configuration and capability
@ -780,7 +780,7 @@ class LDAPServer
* *
* @return string|false * @return string|false
*/ */
function getLoginString( $server_id ) function getLoginString()
{ {
global $servers; global $servers;

View File

@ -1,5 +1,5 @@
<? <?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/syslog.php,v 1.4 2005/03/05 09:38:46 wurley Exp $ // $Header: /cvsroot/phpldapadmin/phpldapadmin/syslog.php,v 1.5 2005/04/05 07:34:23 wurley Exp $
/** /**
* Functions related to syslog logging. * Functions related to syslog logging.