Move Config::get() to DI::config()->get()

This commit is contained in:
nupplaPhil
2020-01-19 21:21:13 +01:00
parent 5d294e8be8
commit 6c36fd9e01
126 changed files with 581 additions and 596 deletions
+3 -3
View File
@@ -357,7 +357,7 @@ function networkFlatView(App $a, $update = 0)
$o .= status_editor($a, $x);
if (!Config::get('theme', 'hide_eventlist')) {
if (!DI::config()->get('theme', 'hide_eventlist')) {
$o .= Profile::getBirthdays();
$o .= Profile::getEventsReminderHTML();
}
@@ -620,7 +620,7 @@ function networkThreadedView(App $a, $update, $parent)
}
}
if (!$gid && !$cid && !$update && !Config::get('theme', 'hide_eventlist')) {
if (!$gid && !$cid && !$update && !DI::config()->get('theme', 'hide_eventlist')) {
$o .= Profile::getBirthdays();
$o .= Profile::getEventsReminderHTML();
}
@@ -703,7 +703,7 @@ function networkThreadedView(App $a, $update, $parent)
} else {
// Load all unseen items
$sql_extra4 = "`item`.`unseen`";
if (Config::get("system", "like_no_comment")) {
if (DI::config()->get("system", "like_no_comment")) {
$sql_extra4 .= " AND `item`.`gravity` IN (" . GRAVITY_PARENT . "," . GRAVITY_COMMENT . ")";
}
if ($order === 'post') {