$args Was Out Of Scope in CheckMirror.

It looks like when the code was factored out no one noticed this variable doesn't exist here.
This commit is contained in:
Christopher Vollick 2009-08-07 08:28:20 -04:00 committed by Craig Andrews
parent 91cba7a76f
commit 69fb7817ef
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ function handleError($error)
exit(-1);
}
function checkMirror($action_obj)
function checkMirror($action_obj, $args)
{
global $config;
@ -198,7 +198,7 @@ function main()
} else {
$action_obj = new $action_class();
checkMirror($action_obj);
checkMirror($action_obj, $args);
try {
if ($action_obj->prepare($args)) {