Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:1 to 12 of 12
<?php
/*
Extension Name: Return URL Override
Extension Url: http://lussumo.com/
Description: Forces Users to go to the configured URL upon login
Version: 0.1
Author: sirlancelot
Author Url: http://lussumo.com/
*/
function SignInForm_ChangeReturnUrl(&$SignInForm) {
$Context =& $SignInForm->Context;
$SignInForm->PostBackParams->Add('ReturnUrl', $Context->Configuration['FORWARD_VALIDATED_USER_URL']);
}
$Context->AddDelegate('SignInForm', 'PreNoPostBackRender', 'SignInForm_ChangeReturnUrl');
?>I think that should do it. I've never written an extension before so someone should back me up here :)1 to 12 of 12