Plugin Directory

Changeset 1231046


Ignore:
Timestamp:
08/26/2015 09:11:53 AM (11 years ago)
Author:
glatze
Message:
  • FIX: A Password-Change-Mail is send after every Login.

[Issue 88] http://bt.steindorff.de/view.php?id=88

Location:
active-directory-integration/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • active-directory-integration/trunk/ad-integration.php

    r1148166 r1231046  
    33/*
    44Plugin Name: Active Directory Integration
    5 Version: 1.1.7
     5Version: 1.1.8
    66Plugin URI: http://www.steindorff.de/wp-ad-integration
    77Description: Allows WordPress to authenticate, authorize, create and update users through Active Directory
     
    4949    // version of needed DB table structure
    5050    const DB_VERSION = '0.9';
    51     const ADI_VERSION = '1.1.7';
     51    const ADI_VERSION = '1.1.8';
    5252   
    5353    // name of our own table
     
    5858    public $_authenticated = false;
    5959   
    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';
    6262   
    6363    // log level
     
    27152715        global $wp_version;
    27162716       
     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       
    27172722        $info = $this->_create_info_array($userinfo);
    27182723       
  • active-directory-integration/trunk/readme.txt

    r1148166 r1231046  
    22Contributors: glatze
    33Tags: authentication, active directory, ldap, authorization, security, windows
    4 Requires at least: 3.0
    5 Tested up to: 4.2.1
    6 Stable tag: 1.1.7
     4Requires at least: 4.0
     5Tested up to: 4.3
     6Stable tag: 1.1.8
    77
    88Allows WordPress to authenticate, authorize, create and update users against Active Directory
     
    1010
    1111== 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.**
    1214
    1315This Plugin allows WordPress to authenticate, authorize, create and update users against an Active Directory Domain.
     
    4749= Requirements =
    4850
    49 * WordPress since 3.0
     51* WordPress since 4.0
    5052* PHP 5
    5153* LDAP support
     
    131133
    132134== 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.)
    133138
    134139= 1.1.7 =
Note: See TracChangeset for help on using the changeset viewer.