]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_display.php
Move PConfig::get() to DI::pConfig()->get()
[friendica.git] / mod / update_display.php
index 4b6d26cb7f4fb9303cf8ff3cee72be1caad1d70a..bfd8cdab88897281de380b1b48a153db98169329 100644 (file)
@@ -7,6 +7,7 @@
 use Friendica\App;
 use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
+use Friendica\DI;
 
 require_once "mod/display.php";
 
@@ -20,7 +21,7 @@ function update_display_content(App $a)
 
        $text = display_content($a, true, $profile_uid);
 
-       if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
+       if (DI::pConfig()->get(local_user(), "system", "bandwidth_saver")) {
                $replace = "<br />" . L10n::t("[Embedded content - reload page to view]") . "<br />";
                $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
                $text = preg_replace($pattern, $replace, $text);
@@ -35,5 +36,5 @@ function update_display_content(App $a)
        echo str_replace("\t", "       ", $text);
        echo "</section>";
        echo "</body></html>\r\n";
-       killme();
+       exit();
 }