]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_notes.php
Issue-#3873
[friendica.git] / mod / update_notes.php
index b21f698054b9fa3d92f9bdd2ba1ae2280ff5517e..b81c2fbe7d1314b6f840e1b53183c02202601294 100644 (file)
@@ -5,9 +5,12 @@
  * Purpose: AJAX synchronisation of notes page
  */
 
+use Friendica\App;
+use Friendica\Core\PConfig;
+
 require_once("mod/notes.php");
 
-function update_notes_content(App &$a) {
+function update_notes_content(App $a) {
 
        $profile_uid = intval($_GET["p"]);
 
@@ -32,7 +35,7 @@ function update_notes_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);