Plugin Directory

Changeset 163144


Ignore:
Timestamp:
10/13/2009 08:00:30 PM (16 years ago)
Author:
onigoetz
Message:

Committing bugfixes for duplicate users and users creation

Location:
phpbb-single-sign-on/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • phpbb-single-sign-on/trunk/connect-phpbb.php

    r162750 r163144  
    22/*
    33Plugin Name: PHPBB Single Sign On
    4 Version: 0.4.2
     4Version: 0.4.5
    55Plugin URI: http://www.onigoetz.ch/plugins/wordpress-phpbb-plugin/
    66Description: Connecte un site wordpress à PHPBB
  • phpbb-single-sign-on/trunk/files/auth_op.php

    r162750 r163144  
    66*
    77* @package login
    8 * @version 0.4.2
     8* @version 0.4.5
    99* @license http://opensource.org/licenses/gpl-license.php GNU Public License
    1010*
     
    6868        if(!function_exists('censor_text')){
    6969            //use another function, maybe this one is not available at this point of the execution
    70             $wp_user = wp_get_current_user();
    71             $in_wp = $wp_user->ID == 0 ? FALSE : TRUE;
     70            //$wp_user = wp_get_current_user();
     71            $wp_user = op_Wordpress::getIdByName($username);
     72            $in_wp = $wp_user == 0 ? FALSE : TRUE;
    7273        } else {
    73             //op_include_wp_module();
    74             //op_WordPress::load();
    7574
    7675            if(isset($current_user)){
  • phpbb-single-sign-on/trunk/files/common.php

    r162750 r163144  
    66*
    77* @package login
    8 * @version 0.4.2
     8* @version 0.4.5
    99* @license http://opensource.org/licenses/gpl-license.php GNU Public License
    1010*
  • phpbb-single-sign-on/trunk/readme.txt

    r162749 r163144  
    2222
    2323= Roadmap =
     24* API to create logons on other CMS's
    2425* Hook for password change
    2526* Profile sync
    2627
    27 = Known Bugs =
    28 * Creates a duplicata of wordpress user on every login
    29 * Cannot automatically create users
     28= 0.4.4 =
     29* Bugfix : Creates a duplicata of wordpress user on every login
     30* Bugfix : Cannot automatically create users
    3031
    3132= 0.4.2 =
Note: See TracChangeset for help on using the changeset viewer.