['filter' => FILTER_VALIDATE_INT] ); public function __construct(string $rawParam) { parent::__construct($rawParam); if (!Cfg::get('PROFILER_ENABLE')) $this->generate404(); } /* params id: return: null */ protected function generate() : void // links char with account { if (!$this->assertGET('id')) { trigger_error('ProfileLinkResponse - profileId empty', E_USER_ERROR); return; } // only link characters, not custom profiles $newId = DB::Aowow()->qry( 'REPLACE INTO ::account_profiles (`accountId`, `profileId`, `extraFlags`) SELECT %i, p.`id`, 0 FROM ::profiler_profiles p WHERE p.`id` = %i AND `custom` = 0', User::$id, $this->_get['id'] ); if (!is_int($newId)) trigger_error('ProfileLinkResponse - some of the profileIds were custom or do not exist', E_USER_ERROR); } } ?>