$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:
parent
b27af3247d
commit
65c37d66c8
|
@ -73,7 +73,7 @@ function handleError($error)
|
|||
exit(-1);
|
||||
}
|
||||
|
||||
function checkMirror($action_obj)
|
||||
function checkMirror($action_obj, $args)
|
||||
{
|
||||
global $config;
|
||||
|
||||
|
@ -178,7 +178,7 @@ function main()
|
|||
} else {
|
||||
$action_obj = new $action_class();
|
||||
|
||||
checkMirror($action_obj);
|
||||
checkMirror($action_obj, $args);
|
||||
|
||||
try {
|
||||
if ($action_obj->prepare($args)) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user