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
{{ message }}
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
Configuration data is incorrectly saved in the $config array in loadConfiguration() due to wrong use of array_merge_recursive(). array_merge_recursive() combines a set of arrays into one array by copying all entries from the input arrays into the result array. When two entries have identical keys, an array of the values of both entries is created and assigned to that key in the result array.
Configuration data is incorrectly saved in the
$config
array inloadConfiguration()
due to wrong use ofarray_merge_recursive()
.array_merge_recursive()
combines a set of arrays into one array by copying all entries from the input arrays into the result array. When two entries have identical keys, an array of the values of both entries is created and assigned to that key in the result array.Solution: Use
array_merge()
instead ofarray_merge_recursive()
.The text was updated successfully, but these errors were encountered: