]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_display.php
Issue-#3873
[friendica.git] / mod / update_display.php
index b8538a256bc99ab17eaee30d38c91660d0024358..9dd3edf282d1f12413a980a235195839e2797afd 100644 (file)
@@ -3,6 +3,7 @@
 // See update_profile.php for documentation
 
 use Friendica\App;
+use Friendica\Core\PConfig;
 
 require_once("mod/display.php");
 require_once("include/group.php");
@@ -21,7 +22,7 @@ function update_display_content(App $a) {
        $replace = "<img\${1} dst=\"\${2}\"";
        $text = preg_replace($pattern, $replace, $text);
 
-       if (get_pconfig(local_user(), "system", "bandwith_saver")) {
+       if (PConfig::get(local_user(), "system", "bandwith_saver")) {
                $replace = "<br />".t("[Embedded content - reload page to view]")."<br />";
                $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
                $text = preg_replace($pattern, $replace, $text);