diff options
| author | Hash9 <hash9@users.sourceforge.net> | 2006-08-14 23:25:31 +0000 |
|---|---|---|
| committer | Hash9 <hash9@users.sourceforge.net> | 2006-08-14 23:25:31 +0000 |
| commit | 4e87b81546c4941b9934758b942941db21bab306 (patch) | |
| tree | 6b2f8fe636a40250b0b8f8a2a7b398344f0031eb | |
| parent | 2c0131ffa36e8003b93ddebd94822493f0d3c8eb (diff) | |
| download | users-4e87b81546c4941b9934758b942941db21bab306.tar.gz users-4e87b81546c4941b9934758b942941db21bab306.tar.bz2 users-4e87b81546c4941b9934758b942941db21bab306.zip | |
fix bug preventing registration from working silently
| -rw-r--r-- | BitUser.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/BitUser.php b/BitUser.php index 660d0df..6e94225 100644 --- a/BitUser.php +++ b/BitUser.php @@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_users/BitUser.php,v 1.94 2006/08/11 16:41:23 hash9 Exp $ + * $Header: /cvsroot/bitweaver/_bit_users/BitUser.php,v 1.95 2006/08/14 23:25:31 hash9 Exp $ * * Lib for user administration, groups and permissions * This lib uses pear so the constructor requieres @@ -12,7 +12,7 @@ * All Rights Reserved. See copyright.txt for details and a complete list of authors. * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details * - * $Id: BitUser.php,v 1.94 2006/08/11 16:41:23 hash9 Exp $ + * $Id: BitUser.php,v 1.95 2006/08/14 23:25:31 hash9 Exp $ * @package users */ @@ -40,7 +40,7 @@ define("ACCOUNT_DISABLED", -6); * Class that holds all information for a given user * * @author spider <spider@steelsun.com> - * @version $Revision: 1.94 $ + * @version $Revision: 1.95 $ * @package users * @subpackage BitUser */ @@ -490,6 +490,8 @@ return false; } } + $this->load(false,$pParamHash['login']); + require_once( KERNEL_PKG_PATH.'notification_lib.php' ); $notificationlib->post_new_user_event( $pParamHash['login'] ); $ret = TRUE; |
