public function &profile_setInfo($title, $type, $info_fields, $uid = null, $st1 = null, $st2 = null)
 {
     if ($uid != null) {
         $user_id = $uid;
     } else {
         $user_id = $this->m_an->get_fb_param('user');
     }
     $this->m_an->gen_profile_setInfo($info_fields, $user_id, $st1, $st2);
     $r = parent::profile_setInfo($title, $type, $info_fields, $uid);
     if (!empty($r)) {
         $this->m_an->kt_profile_setInfo_send($user_id, $st1, $st2);
     }
     return $r;
 }