Make settingValue function silent for undefined inde

This commit is contained in:
DariusIII
2019-01-28 13:30:31 +01:00
parent 18b4d11674
commit ef270cd638
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1,4 +1,5 @@
2019-01-28 DariusIII
* Chg: Make settingValue function silent for undefined index
* Fix: Fix check for not empty collections table in Forking class
* Chg: Update composer/ca-bundle (1.1.3 => 1.1.4)
* Fix: Fix wrong date calculation in safeBackfill function
+1 -1
View File
@@ -173,7 +173,7 @@ class Settings extends Model
[
'section' => $match[1] ?? '',
'subsection' => $match[2] ?? '',
'name' => $match[3],
'name' => $match[3] ?? '',
]
)->value('value');