Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Increase readability #741

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
using array_merge instead of '+' to merge arrays
  • Loading branch information
rotelok committed Jun 16, 2018
commit 28ee41c009ce232b6fa018d9f95de0d66368859a
2 changes: 1 addition & 1 deletion lib/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
}

// Join ICEcoder settings and user settings together to make our final ICEcoder array
$ICEcoder = $ICEcoderSettings + $ICEcoderUserSettings;
$ICEcoder = array_merge($ICEcoderSettings , $ICEcoderUserSettings);

// Include language file
// Load base first as foundation
Expand Down