Changeset 1231046
- Timestamp:
- 08/26/2015 09:11:53 AM (11 years ago)
- Location:
- active-directory-integration/trunk
- Files:
-
- 2 edited
-
ad-integration.php (modified) (4 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
active-directory-integration/trunk/ad-integration.php
r1148166 r1231046 3 3 /* 4 4 Plugin Name: Active Directory Integration 5 Version: 1.1. 75 Version: 1.1.8 6 6 Plugin URI: http://www.steindorff.de/wp-ad-integration 7 7 Description: Allows WordPress to authenticate, authorize, create and update users through Active Directory … … 49 49 // version of needed DB table structure 50 50 const DB_VERSION = '0.9'; 51 const ADI_VERSION = '1.1. 7';51 const ADI_VERSION = '1.1.8'; 52 52 53 53 // name of our own table … … 58 58 public $_authenticated = false; 59 59 60 protected $_minium_WPMU_version = ' 3.0';61 protected $_minium_WP_version = ' 3.0';60 protected $_minium_WPMU_version = '4.0'; 61 protected $_minium_WP_version = '4.0'; 62 62 63 63 // log level … … 2715 2715 global $wp_version; 2716 2716 2717 2718 /* Since WP 4.3 we have to disable email on password and email change */ 2719 add_filter('send_password_change_email', '__return_false'); 2720 add_filter('send_email_change_email', '__return_false'); 2721 2717 2722 $info = $this->_create_info_array($userinfo); 2718 2723 -
active-directory-integration/trunk/readme.txt
r1148166 r1231046 2 2 Contributors: glatze 3 3 Tags: authentication, active directory, ldap, authorization, security, windows 4 Requires at least: 3.05 Tested up to: 4. 2.16 Stable tag: 1.1. 74 Requires at least: 4.0 5 Tested up to: 4.3 6 Stable tag: 1.1.8 7 7 8 8 Allows WordPress to authenticate, authorize, create and update users against Active Directory … … 10 10 11 11 == Description == 12 13 **ATTENTION: If you are running a multisite environment you shouldn't update from 1.1.5 or lower to 1.1.6 or above. Since 1.1.6 the central settings apply for all sites. In the upcoming version 1.2 you can choose between installation wide and site specific settings.** 12 14 13 15 This Plugin allows WordPress to authenticate, authorize, create and update users against an Active Directory Domain. … … 47 49 = Requirements = 48 50 49 * WordPress since 3.051 * WordPress since 4.0 50 52 * PHP 5 51 53 * LDAP support … … 131 133 132 134 == Changelog == 135 136 = 1.1.8 = 137 * FIX: A Password-Change-Mail is send after every Login. (Issue #0088. Thanks to Benny Vizens and conkidd for the bug report.) 133 138 134 139 = 1.1.7 =
Note: See TracChangeset
for help on using the changeset viewer.