Action Parameter Binding as implemented in CInlineAction currently only supports $_GET parameters, so parameters from POST requests won't be bound.
If CInlineAction would use CHttpRequest->getParam($name) instead of $_GET[$name]
in the run() method, it would support Action Parameter Binding in both GET and POST requests.
I would prefer that behavior.
If CInlineAction would use CHttpRequest->getParam($name) instead of $_GET[$name]
in the run() method, it would support Action Parameter Binding in both GET and POST requests.
I would prefer that behavior.