Changeset 163144
- Timestamp:
- 10/13/2009 08:00:30 PM (16 years ago)
- Location:
- phpbb-single-sign-on/trunk
- Files:
-
- 4 edited
-
connect-phpbb.php (modified) (1 diff)
-
files/auth_op.php (modified) (2 diffs)
-
files/common.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
phpbb-single-sign-on/trunk/connect-phpbb.php
r162750 r163144 2 2 /* 3 3 Plugin Name: PHPBB Single Sign On 4 Version: 0.4. 24 Version: 0.4.5 5 5 Plugin URI: http://www.onigoetz.ch/plugins/wordpress-phpbb-plugin/ 6 6 Description: Connecte un site wordpress à PHPBB -
phpbb-single-sign-on/trunk/files/auth_op.php
r162750 r163144 6 6 * 7 7 * @package login 8 * @version 0.4. 28 * @version 0.4.5 9 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License 10 10 * … … 68 68 if(!function_exists('censor_text')){ 69 69 //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; 72 73 } else { 73 //op_include_wp_module();74 //op_WordPress::load();75 74 76 75 if(isset($current_user)){ -
phpbb-single-sign-on/trunk/files/common.php
r162750 r163144 6 6 * 7 7 * @package login 8 * @version 0.4. 28 * @version 0.4.5 9 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License 10 10 * -
phpbb-single-sign-on/trunk/readme.txt
r162749 r163144 22 22 23 23 = Roadmap = 24 * API to create logons on other CMS's 24 25 * Hook for password change 25 26 * Profile sync 26 27 27 = Known Bugs=28 * Creates a duplicata of wordpress user on every login29 * Cannot automatically create users28 = 0.4.4 = 29 * Bugfix : Creates a duplicata of wordpress user on every login 30 * Bugfix : Cannot automatically create users 30 31 31 32 = 0.4.2 =
Note: See TracChangeset
for help on using the changeset viewer.