uid) die('Forbidden'); if(isset($_REQUEST['d'])) $msg = save_profile($_REQUEST['d']); $GUI->main_header(''); ?>
pic(80)?>

Your Settings

Update

If you uploaded new images or made changes to the existing ones, click the following link to resync the database with your files.

Update the Data

isadmin){?>

Administration

Configure PaiKiki

User Data

Here you can change some of your user data. If you don't want to change your password leave the fields empty. Your avatar image is pulled from gravatar.com.


main_footer(); function save_profile($data){ global $Login; $msg = ''; if($data['pass']){ if($data['pass'] == $data['confirm']){ $Login->set('pass',$data['pass']); $Login->dologin($Login->login,$data['pass']); $msg .= '

Password updated

'; }else{ $msg .= '

Password and confirmation did not match.

'; } } if($data['email']){ $Login->set('email',$data['email']); $msg .= '

E-Mail updated.

'; } return $msg; }