diff options
| author | wjames5 <will@tekimaki.com> | 2010-03-10 22:26:52 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2010-03-10 22:26:52 +0000 |
| commit | b6a40cbcbc284db5afac88f76f773b99b5c24a00 (patch) | |
| tree | 0bc15612d1745d80532bb03882b4acdc3f94d907 /register.php | |
| parent | 4641292dc1fdef53fbefaa241349096b062c79e9 (diff) | |
| download | users-b6a40cbcbc284db5afac88f76f773b99b5c24a00.tar.gz users-b6a40cbcbc284db5afac88f76f773b99b5c24a00.tar.bz2 users-b6a40cbcbc284db5afac88f76f773b99b5c24a00.zip | |
Invoke edit services like other content at registration time so various service pkgs can add to users like any other content
Diffstat (limited to 'register.php')
| -rw-r--r-- | register.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/register.php b/register.php index 405bd85..bd973ba 100644 --- a/register.php +++ b/register.php @@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_users/register.php,v 1.45 2010/02/16 19:54:15 wjames5 Exp $ + * $Header: /cvsroot/bitweaver/_bit_users/register.php,v 1.46 2010/03/10 22:26:52 wjames5 Exp $ * * Copyright (c) 2004 bitweaver.org * Copyright (c) 2003 tikwiki.org @@ -8,7 +8,7 @@ * All Rights Reserved. See below for details and a complete list of authors. * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details * - * $Id: register.php,v 1.45 2010/02/16 19:54:15 wjames5 Exp $ + * $Id: register.php,v 1.46 2010/03/10 22:26:52 wjames5 Exp $ * @package users * @subpackage functions */ @@ -147,6 +147,9 @@ $listHash = array( $groupList = $gBitUser->getAllGroups( $listHash ); $gBitSmarty->assign_by_ref( 'groupList', $groupList ); +// invoke edit services +$gBitUser->invokeServices( 'content_edit_function' ); + // include preferences settings from other packages - these will be included as individual tabs $packages = array(); foreach( $gBitSystem->mPackages as $package ) { |
