Changeset 871
- Timestamp:
- 06/21/07 22:35:00 (1 year ago)
- Files:
-
- branches/0.8/register.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.8/register.php
r792 r871 7 7 8 8 $user_login = $user_safe = true; 9 10 $_globals = array('profile_info_keys', 'user_safe', 'user_login', 'user_email', 'user_url', 'bad_input'); 11 $_globals = array_merge($_globals, array_keys($profile_info_keys)); 9 12 10 13 if ($_POST) : … … 35 38 do_action('register_user', $user_id); 36 39 37 bb_load_template( 'register-success.php' );40 bb_load_template( 'register-success.php', $_globals ); 38 41 exit(); 39 42 endif; … … 45 48 $user_login = ''; 46 49 47 $_globals = array('profile_info_keys', 'user_safe', 'user_login', 'user_email', 'user_url', 'bad_input');48 $_globals = array_merge($_globals, array_keys($profile_info_keys));49 50 50 bb_load_template( 'register.php', $_globals ); 51 51