alecpl
2009-07-22 564a2ba793b8d98abc6b7387f9fe1db869fce1b6
index.php
@@ -222,7 +222,8 @@
);
// include task specific functions
include_once 'program/steps/'.$RCMAIL->task.'/func.inc';
if (is_file($incfile = 'program/steps/'.$RCMAIL->task.'/func.inc'))
  include_once($incfile);
// allow 5 "redirects" to another action
$redirects = 0; $incstep = null;
@@ -236,7 +237,7 @@
    break;
  }
  // try to include the step file
  else if (is_file(($incfile = 'program/steps/'.$RCMAIL->task.'/'.$stepfile))) {
  else if (is_file($incfile = 'program/steps/'.$RCMAIL->task.'/'.$stepfile)) {
    include($incfile);
    $redirects++;
  }