Skip to content
Snippets Groups Projects
Commit 46c0ed74 authored by Michael Hamann's avatar Michael Hamann
Browse files

No more redirect on do

darcs-hash:20080901120812-fdd0b-7082d4c264f665899f56438c0d0a64137d83b3a1.gz
parent 7dee3468
No related branches found
No related tags found
No related merge requests found
......@@ -129,8 +129,8 @@ function act_dispatch(){
$evt->advise_after();
unset($evt);
// when action 'show' and POST, do a redirect
if($ACT == 'show' && strtolower($_SERVER['REQUEST_METHOD']) == 'post'){
// when action 'show', the intial not 'show' and POST, do a redirect
if($ACT == 'show' && $preact != 'show' && strtolower($_SERVER['REQUEST_METHOD']) == 'post'){
act_redirect($ID,$preact);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment