I'm writing an access control handler.  I have a little routine to cleanup the variables so that they don't persist after the script is through running into the next run.  However, sometimes I do a redirect to a login page like so.
 
 
  $r->internal_redirect($VAR{'login_page'});
 clean_up();
 return OK;
 
 
My question is:  Will the clean_up() routine run, or will the script loose control at the internal redirect and never reach the clean_up routine.
 
Thanks
John Michael
 

Reply via email to