Changeset 974424
- Timestamp:
- 08/28/2014 02:39:54 AM (12 years ago)
- Location:
- simple-user-password-generator/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
simple-user-password-generator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-user-password-generator/trunk/readme.txt
r972008 r974424 5 5 Requires at least: 3.8 6 6 Tested up to: 4.0 7 Stable tag: 3.0 7 Stable tag: 3.0.1 8 8 License: GPLv2 9 9 … … 33 33 == Changelog == 34 34 35 = 3.0.1 = 36 * Bug fix (forgot to remove unused hook) 37 35 38 = 3.0 = 36 39 * Refactored for performance / maintainability -
simple-user-password-generator/trunk/simple-user-password-generator.php
r972008 r974424 4 4 Plugin URI: http://10up.com/plugins/simple-user-password-generator-wordpress/ 5 5 Description: Allows administrators to generate a secure password when adding new users. 6 Version: 3.0 6 Version: 3.0.1 7 7 Author: Jake Goldman, 10up 8 8 Author URI: http://10up.com … … 42 42 add_action( 'admin_init', array( __CLASS__, 'admin_init' ) ); 43 43 add_action( 'wp_ajax_simple_user_generate_password', array( __CLASS__, 'ajax_generate_password' ) ); 44 add_action( 'user_register', array( __CLASS__, 'user_register' ) );44 // add_action( 'user_register', array( __CLASS__, 'user_register' ) ); 45 45 add_action( 'user_profile_update_errors', array( __CLASS__, 'user_profile_update_errors' ), 10, 3 ); 46 46 }
Note: See TracChangeset
for help on using the changeset viewer.