]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_display.php
Merge pull request #3985 from hoergen/develop
[friendica.git] / mod / update_display.php
index 86f4db8259f83c4db9fdd580666c91da42060c16..9dd3edf282d1f12413a980a235195839e2797afd 100644 (file)
@@ -2,6 +2,9 @@
 
 // See update_profile.php for documentation
 
+use Friendica\App;
+use Friendica\Core\PConfig;
+
 require_once("mod/display.php");
 require_once("include/group.php");
 
@@ -19,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);