From 7298c37f44cbb857549d531b9ef96082c2906c0d Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Fri, 6 Jan 2017 00:18:52 +0300 Subject: [PATCH] Recent fix fix. --- src/Skobkin/Bundle/PointToolsBundle/Service/AbstractApi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Skobkin/Bundle/PointToolsBundle/Service/AbstractApi.php b/src/Skobkin/Bundle/PointToolsBundle/Service/AbstractApi.php index 62a0019..4901d36 100644 --- a/src/Skobkin/Bundle/PointToolsBundle/Service/AbstractApi.php +++ b/src/Skobkin/Bundle/PointToolsBundle/Service/AbstractApi.php @@ -81,7 +81,7 @@ class AbstractApi { // Cleaning POST parameters from potential @file injections array_walk($parameters, function (string &$value, string $key) { - str_replace('@', '', $value); + $value = str_replace('@', '', $value); }); /** @var GuzzleRequest $request */