Fixed invalid variable access
authorAlexander Ebert <ebert@woltlab.com>
Mon, 1 Aug 2011 16:12:02 +0000 (18:12 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Mon, 1 Aug 2011 16:12:02 +0000 (18:12 +0200)
wcfsetup/install/files/lib/action/AJAXProxyAction.class.php

index c33b460790b0abc0aa615c090ec9cb8153800424..4291a28cdc80de1d90f245f7a57c2659cc307dad 100644 (file)
@@ -87,7 +87,7 @@ class AJAXProxyAction extends AbstractSecureAction {
                        if (is_array($_POST['objectIDs'])) $this->objectIDs = ArrayUtil::toIntegerArray($_POST['objectIDs']);
                }
                if (isset($_POST['parameters'])) {
-                       if (is_array($_POST['parameters'])) $this->parameters = $parameters;
+                       if (is_array($_POST['parameters'])) $this->parameters = $_POST['parameters'];
                }
        }