Can you please tell me what this list says/does?
$pt->videos = $get_videos;
$pt->users = $get_users;
$pt->page = 'search';
$pt->title = $lang->search . ' | ' . $pt->config->title;
$pt->description = $pt->config->description;
$pt->keyword = $pt->config->keyword;
$pt->content = PT_LoadPage('search/content', array(
'VIDEOS' => $final,
'USERS' => $final2,
'KEYWORD' => $keyword,
'CAT' => $category_id
));
In particular, can you tell me what this line says/does?
$pt->title = $lang->search . ' | ' . $pt->config->title;
any help is appreciated.