You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The translate() method in the Neos\Flow\I18n\EelHelper\TranslationParameterToken class has an $overrides argument which is ineffective, because the result of the array_replace_recursive() call is not used to replace the array. (The argument is never used in Flow, so it does not lead to any obviously visible bugs within Flow.)
Is there an existing issue for this?
Current Behavior
The translate() method in the Neos\Flow\I18n\EelHelper\TranslationParameterToken class has an $overrides argument which is ineffective, because the result of the array_replace_recursive() call is not used to replace the array. (The argument is never used in Flow, so it does not lead to any obviously visible bugs within Flow.)
flow-development-collection/Neos.Flow/Classes/I18n/EelHelper/TranslationParameterToken.php
Line 170 in fd3b1a8
Expected Behavior
The $overrides argument should work as expected. This should work:
$this->parameters = array_replace_recursive($this->parameters, $overrides);
Steps To Reproduce
No response
Environment
Anything else?
No response
The text was updated successfully, but these errors were encountered: