Can you help me remedy this error, please? thank you.
Parse error: syntax error, unexpected T_IF in /home/public_html/mms/classes/account.php on line 871
function get_account_menu() {
$html = "";
if($this->check_login() == false) {
$html = " ";
} else {
$account_id = $this->get_current_account_id();
$acount_type_id = $this->get_account_type_id($account_id);
if ($account_type_id == 1) {
$link= 'page1.php'
if ($account_type_id == 2 ) {
$link= 'page2.php'
}
$content = new content_pages($this->system);
$pages_list = $content->get_account_pages_list($acount_type_id);
$html = $this->system->template->compile_template("account_menu.htm",get_defined_vars());
}
return $html;
}