projects
/
quix0rs-gnu-social.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91cba7a
)
$args Was Out Of Scope in CheckMirror.
author
Christopher Vollick
<psycotica0@gmail.com>
Fri, 7 Aug 2009 12:28:20 +0000
(08:28 -0400)
committer
Craig Andrews
<candrews@integralblue.com>
Fri, 7 Aug 2009 17:33:27 +0000
(13:33 -0400)
It looks like when the code was factored out no one noticed this variable doesn't exist here.
index.php
patch
|
blob
|
history
diff --git
a/index.php
b/index.php
index 5f13064dabe8b070547d147c537c243821c92f98..2e74d38fb0ac29d46e01ab115727e93100680f0e 100644
(file)
--- a/
index.php
+++ b/
index.php
@@
-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)) {