Changeset 986638
- Timestamp:
- 09/10/2014 05:15:46 PM (12 years ago)
- Location:
- last-login
- Files:
-
- 4 edited
- 1 copied
-
tags/1.2 (copied) (copied from last-login/trunk)
-
tags/1.2/last-login.php (modified) (2 diffs)
-
tags/1.2/readme.txt (modified) (2 diffs)
-
trunk/last-login.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
last-login/tags/1.2/last-login.php
r916605 r986638 4 4 Plugin URI: http://yourdomain.com/ 5 5 Description: Records logins and provides a shortcode to display the timestamp. 6 Version: 1. 16 Version: 1.2 7 7 Author: Don Kukral 8 8 Author URI: http://yourdomain.com … … 98 98 function get_last_login_current_user($format='%c') { 99 99 $current_user = wp_get_current_user(); 100 return last_login_time($current_user->ID, $format);100 return get_last_login($current_user->ID, $format); 101 101 } 102 102 -
last-login/tags/1.2/readme.txt
r916605 r986638 4 4 Tags: login 5 5 Requires at least: 3.0 6 Tested up to: 3.9.17 Stable tag: 1. 16 Tested up to: 4.0 7 Stable tag: 1.2 8 8 9 9 Plugin for WordPress that records the last time a user logged in and provides a function to display that date. … … 44 44 45 45 == Changelog == 46 = 1.2 = 47 Verified compatibility with WP 4.0 - fixed call to get_last_login() 48 46 49 = 1.1 = 47 50 Verified compatibility with WP 3.9.1 -
last-login/trunk/last-login.php
r916605 r986638 4 4 Plugin URI: http://yourdomain.com/ 5 5 Description: Records logins and provides a shortcode to display the timestamp. 6 Version: 1. 16 Version: 1.2 7 7 Author: Don Kukral 8 8 Author URI: http://yourdomain.com … … 98 98 function get_last_login_current_user($format='%c') { 99 99 $current_user = wp_get_current_user(); 100 return last_login_time($current_user->ID, $format);100 return get_last_login($current_user->ID, $format); 101 101 } 102 102 -
last-login/trunk/readme.txt
r916605 r986638 4 4 Tags: login 5 5 Requires at least: 3.0 6 Tested up to: 3.9.17 Stable tag: 1. 16 Tested up to: 4.0 7 Stable tag: 1.2 8 8 9 9 Plugin for WordPress that records the last time a user logged in and provides a function to display that date. … … 44 44 45 45 == Changelog == 46 = 1.2 = 47 Verified compatibility with WP 4.0 - fixed call to get_last_login() 48 46 49 = 1.1 = 47 50 Verified compatibility with WP 3.9.1
Note: See TracChangeset
for help on using the changeset viewer.