Plugin Directory

Changeset 1222878


Ignore:
Timestamp:
08/17/2015 05:09:42 PM (10 years ago)
Author:
wp.kytten
Message:

Updated plugin to version 0.11
Fixes php error generated when adding the wp cron action (ref: https://wordpress.org/support/topic/update-to-010-could-not-be-activated-because-it-triggered-a-fatal-error)

Location:
wp-password-policy-manager
Files:
79 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-password-policy-manager/trunk/readme.txt

    r1222576 r1222878  
    77Requires at least: 4.0
    88Tested up to: 4.3
    9 Stable tag: 0.10
     9Stable tag: 0.11
    1010
    1111Configure WordPress password policies to ensure all WordPress users use strong passwords and improve the security of your WordPress.
     
    9191== Changelog ==
    9292
     93= 0.11 (2015-08-17) =
     94* **Updates**
     95    * Fixes php error generated when adding the wp cron action (ref: https://wordpress.org/support/topic/update-to-010-could-not-be-activated-because-it-triggered-a-fatal-error)
     96
    9397= 0.10 (2015-08-17) =
    9498* **Updates**
  • wp-password-policy-manager/trunk/wp-password-policy-manager.php

    r1222576 r1222878  
    55Description: WordPress Password Policy Manager allows WordPress administrators to configure password policies for WordPress users to use strong passwords.
    66Author: wpkytten
    7 Version: 0.10
     7Version: 0.11
    88Text Domain: wp-password-policy-manager
    99Domain Path: /languages/
     
    16131613
    16141614$wppm = WpPasswordPolicyManager::GetInstance();
    1615 
     1615$action = $wppm::WP_CRON_ACTION;
    16161616/*
    16171617 * WP Cron
     
    16201620add_action( 'wp', array($wppm, '_cronSchedule') ); // frontend
    16211621add_action( 'plugins_loaded', array($wppm, '_cronSchedule') ); // backend
    1622 add_action( $wppm::WP_CRON_ACTION, array($wppm, '_cronDoAction') );
     1622add_action( "{$action}", array($wppm, '_cronDoAction') );
    16231623register_deactivation_hook( __FILE__, array($wppm, '_cronUnschedule') );
    16241624
Note: See TracChangeset for help on using the changeset viewer.