Changeset 700896
- Timestamp:
- 04/21/2013 12:59:37 AM (13 years ago)
- Location:
- wp-last-login/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-last-login.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-last-login/trunk/readme.txt
r700584 r700896 5 5 Requires at least: 3.1 6 6 Tested up to: 3.6 7 Stable tag: 1.2. 07 Stable tag: 1.2.1 8 8 9 9 Make the last login for each user visibile in the user overview. … … 52 52 == Changelog == 53 53 54 = 1.2.1 = 55 * Reverts changes to wp_login() as the second argument seems not to be set at all times. 56 54 57 = 1.2.0 = 55 58 * Users are now sortable by last login! -
wp-last-login/trunk/wp-last-login.php
r700584 r700896 5 5 * Plugin URI: http://en.wp.obenland.it/wp-last-login/#utm_source=wordpress&utm_medium=plugin&utm_campaign=wp-last-login 6 6 * Description: Displays the date of the last login in user lists. 7 * Version: 1.2. 07 * Version: 1.2.1 8 8 * Author: Konstantin Obenland 9 9 * Author URI: http://en.wp.obenland.it/#utm_source=wordpress&utm_medium=plugin&utm_campaign=wp-last-login … … 86 86 * @return void 87 87 */ 88 public function wp_login( $user_login, $user ) { 88 public function wp_login( $user_login ) { 89 $user = get_user_by( 'login', $user_login ); 89 90 update_user_meta( $user->ID, $this->textdomain, time() ); 90 91 }
Note: See TracChangeset
for help on using the changeset viewer.