Changeset 6991 for extensions/Register_FluxBB
- Timestamp:
- Sep 21, 2010, 10:58:16 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/Register_FluxBB/trunk/main.inc.php
r6898 r6991 2 2 /* 3 3 Plugin Name: Register FluxBB 4 Version: 2.3. 34 Version: 2.3.4 5 5 Description: Link user registration from Piwigo to FluxBB forum (registration, password changing, deletion) - Original Nicco's NBC_LinkUser2PunBB plugin upgraded to Piwigo / Liez l'inscription des utilisateurs de Piwigo avec votre forum FluxBB - Portage du plugin NBC_LinkUser2PunBB de Nicco vers Piwigo 6 6 Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=252 … … 64 64 - Bug 1855 fixed : Improvement of use of UAM bridge (fixes php notices) 65 65 - Several language files fix 66 67 2.3.4 - 22/09/10 - Compatibility with Plugin Adult_Content 66 68 -------------------------------------------------------------------------------- 67 69 */ … … 99 101 global $conf; 100 102 101 include_once (REGFLUXBB_PATH.'include/functions.inc.php'); 102 103 // Warning : FluxBB uses Sha1 hash instead of md5 for Piwigo! 104 FluxBB_Adduser($register_user['id'], $register_user['username'], sha1($_POST['password']), $register_user['email']); 103 // Exclusion of Adult_Content users 104 if ($register_user['username'] != "16" and $register_user['username'] != "18") 105 { 106 include_once (REGFLUXBB_PATH.'include/functions.inc.php'); 107 108 // Warning : FluxBB uses Sha1 hash instead of md5 for Piwigo! 109 FluxBB_Adduser($register_user['id'], $register_user['username'], sha1($_POST['password']), $register_user['email']); 110 } 105 111 } 106 112
Note: See TracChangeset
for help on using the changeset viewer.