Quote:
Originally Posted by tpr
Hi,
I'm kinda new in the vb hacking and i ran into a tiny problem.
I'm trying to redirect the user after he does a certain action. Now i use print_standard_redirect function and it redirects currectly. However if i am not mistaken a redirection message should appear, sadly it does not.
Anything i might be doing wrong ?
Thanks,
Tpr
|
because you have it disable, this option can be found in you ACP.
to force the redirect message appear even that option is disalbed, use
PHP Code:
$_REQUEST['forceredirect'] = true;
before the print_standard_redirect() function.