I am trying to redirect after success post in Gk Contact, with the code bellow but it keeps me going back to the home page of my site instead of URL in the code... Could you please help me and tell me how to redirect ?
Thank you in advance.
- Code: Select all
// sending and redirecting
$send = $mailer->Send();
//
if ( $send !== true ) {
$app->redirect($post['return'], JText::_('PLG_GKCONTACT_MESSAGE_SENT_ERROR') . $send->__toString(), "error");
} else {
$app->redirect($post['http://mysite/mylanding']);
}
} else {
$app->redirect($post['return'], JText::_('PLG_GKCONTACT_MESSAGE_EMPTY_ERROR'), "error");
}
} else {
$app->redirect($post['return'], JText::_('PLG_GKCONTACT_NO_RECIPENT_INFO'), "error");
}
}
}