Plugin Directory

Changeset 986638


Ignore:
Timestamp:
09/10/2014 05:15:46 PM (12 years ago)
Author:
dkukral
Message:

Verified compatibility with WP 4.0

Location:
last-login
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • last-login/tags/1.2/last-login.php

    r916605 r986638  
    44Plugin URI: http://yourdomain.com/
    55Description: Records logins and provides a shortcode to display the timestamp.
    6 Version: 1.1
     6Version: 1.2
    77Author: Don Kukral
    88Author URI: http://yourdomain.com
     
    9898function get_last_login_current_user($format='%c') {
    9999    $current_user = wp_get_current_user();
    100     return last_login_time($current_user->ID, $format);   
     100    return get_last_login($current_user->ID, $format);   
    101101}
    102102
  • last-login/tags/1.2/readme.txt

    r916605 r986638  
    44Tags: login
    55Requires at least: 3.0
    6 Tested up to: 3.9.1
    7 Stable tag: 1.1
     6Tested up to: 4.0
     7Stable tag: 1.2
    88
    99Plugin for WordPress that records the last time a user logged in and provides a function to display that date.
     
    4444
    4545== Changelog ==
     46= 1.2 =
     47Verified compatibility with WP 4.0 - fixed call to get_last_login()
     48
    4649= 1.1 =
    4750Verified compatibility with WP 3.9.1
  • last-login/trunk/last-login.php

    r916605 r986638  
    44Plugin URI: http://yourdomain.com/
    55Description: Records logins and provides a shortcode to display the timestamp.
    6 Version: 1.1
     6Version: 1.2
    77Author: Don Kukral
    88Author URI: http://yourdomain.com
     
    9898function get_last_login_current_user($format='%c') {
    9999    $current_user = wp_get_current_user();
    100     return last_login_time($current_user->ID, $format);   
     100    return get_last_login($current_user->ID, $format);   
    101101}
    102102
  • last-login/trunk/readme.txt

    r916605 r986638  
    44Tags: login
    55Requires at least: 3.0
    6 Tested up to: 3.9.1
    7 Stable tag: 1.1
     6Tested up to: 4.0
     7Stable tag: 1.2
    88
    99Plugin for WordPress that records the last time a user logged in and provides a function to display that date.
     
    4444
    4545== Changelog ==
     46= 1.2 =
     47Verified compatibility with WP 4.0 - fixed call to get_last_login()
     48
    4649= 1.1 =
    4750Verified compatibility with WP 3.9.1
Note: See TracChangeset for help on using the changeset viewer.