From 564a2ba793b8d98abc6b7387f9fe1db869fce1b6 Mon Sep 17 00:00:00 2001 From: alecpl Date: Wed, 22 Jul 2009 09:15:36 +0000 Subject: - Help plugin - support 'dummy' task (for plugins) --- index.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index c5a1049e9..a6a7d7dba 100644 --- a/index.php +++ b/index.php @@ -222,7 +222,8 @@ $action_map = array( ); // 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 @@ while ($redirects < 5) { 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++; } -- cgit v1.2.3