Changeset 447
- Timestamp:
- 06/22/07 02:22:17 (1 year ago)
- Files:
-
- ldap-authentication/tags/2.0.2 (added)
- ldap-authentication/tags/2.0.2/ldap-authentication.php (added)
- ldap-authentication/tags/2.0.2/license.txt (added)
- ldap-authentication/tags/2.0.2/readme.txt (added)
- ldap-authentication/trunk/ldap-authentication.php (modified) (4 diffs)
- ldap-authentication/trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ldap-authentication/trunk/ldap-authentication.php
r433 r447 5 5 Description: Allows users to authenticate against an LDAP service 6 6 Author: Sam Bauers 7 Version: 2.0. 17 Version: 2.0.2 8 8 Author URI: 9 9 … … 21 21 Added support for bb_admin_add_submenu() 22 22 2.0.1 : Made PHP4 compatible 23 2.0.2 : Workaround for bbPress bug 670 - http://trac.bbpress.org/ticket/670 23 24 */ 24 25 25 26 26 27 /** 27 * LDAP authentication for bbPress version 2.0. 128 * LDAP authentication for bbPress version 2.0.2 28 29 * 29 30 * ---------------------------------------------------------------------------------- … … 58 59 * @copyright 2007 Sam Bauers 59 60 * @license http://www.gnu.org/licenses/gpl.txt GNU General Public License v2 60 * @version 2.0. 161 * @version 2.0.2 61 62 **/ 62 63 … … 404 405 * @author Sam Bauers 405 406 **/ 406 function bb_check_login($user, $pass, $already_md5 = false) 407 { 408 global $ldap_authentication; 409 return $ldap_authentication->checkLogin($user, $pass, $already_md5); 407 if (!function_exists('bb_check_login')) { 408 function bb_check_login($user, $pass, $already_md5 = false) 409 { 410 global $ldap_authentication; 411 return $ldap_authentication->checkLogin($user, $pass, $already_md5); 412 } 410 413 } 411 414 } ldap-authentication/trunk/readme.txt
r433 r447 3 3 Tags: ldap authentication user management users 4 4 Requires at least: 0.75 5 Tested up to: 1.0 alpha build 8 056 Stable tag: 2.0. 15 Tested up to: 1.0 alpha build 872 6 Stable tag: 2.0.2 7 7 8 8 Allows authentication via an LDAP service … … 53 53 == License == 54 54 55 LDAP authentication for bbPress version 2.0. 155 LDAP authentication for bbPress version 2.0.2 56 56 Copyright (C) 2007 Sam Bauers (sam@viveka.net.au) 57 57 … … 83 83 * 2.0.1 : 84 84 <br/>Made PHP4 compatible 85 * 2.0.2 : 86 <br/>Workaround for bbPress bug 670 - http://trac.bbpress.org/ticket/670
