I have route like this: $router->add( "/walls/([a-zA-Z0-9_]+)/poll/:int", array( "controller" => "polls", "action" => "getWallPoll", "wallUrl" => 1, "pollId" => 2 ) );
Controller/action that handles this, receives nothing through $this->request->get(), $_POST or getPost(), but in file_get_contents('php://input') I can find the data that was in the post. What is causing this?