20 lines
334 B
PHP
20 lines
334 B
PHP
<?php
|
|
require_once('./bb-load.php');
|
|
|
|
$user_id = bb_get_current_user_info( 'id' );
|
|
|
|
if ( !bb_is_profile() ) {
|
|
$sendto = get_profile_tab_link( $user_id, 'edit' );
|
|
wp_redirect( $sendto );
|
|
exit;
|
|
}
|
|
|
|
do_action($self . '_pre_head');
|
|
|
|
|
|
if ( is_callable($self) )
|
|
bb_load_template( 'profile-base.php', array('self'), $user_id );
|
|
|
|
exit;
|
|
?>
|