Plugin Directory

Changeset 158738


Ignore:
Timestamp:
09/28/2009 09:21:46 PM (17 years ago)
Author:
wnorris
Message:

fix tiny bug in get_user_openids

Location:
openid/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • openid/trunk/openid.php

    r158705 r158738  
    104104    if ( $user ) {
    105105        global $wpdb;
    106         return $wpdb->get_col( $wpdb->prepare('SELECT url FROM '.openid_identity_table().' WHERE user_id = %s', $user_id) );
     106        return $wpdb->get_col( $wpdb->prepare('SELECT url FROM '.openid_identity_table().' WHERE user_id = %s', $user->ID) );
    107107    } else {
    108108        return array();
  • openid/trunk/readme.txt

    r158705 r158738  
    44Requires at least: 2.8
    55Tested up to: 2.8.4
    6 Stable tag: 3.3
     6Stable tag: 3.3.1
    77
    88Allows WordPress to provide and consumer OpenIDs for authentication of users and comments.
     
    100100
    101101== Changelog ==
     102
     103= version 3.3.1 (Sep 28, 2009) =
     104 - tiny bug in get_user_openids causing it to always return empty array
    102105
    103106= version 3.3 (Sep 28, 2009) =
Note: See TracChangeset for help on using the changeset viewer.