]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_notes.php
Merge pull request #8253 from tobiasd/20200208-msg
[friendica.git] / mod / update_notes.php
index d27cc4ca9672bfcfe1007b2289bfd9bcb14dc71c..4065b5d1f8cfd12c376f22780162420b72450bb8 100644 (file)
@@ -5,6 +5,9 @@
  * Purpose: AJAX synchronisation of notes page
  */
 
+use Friendica\App;
+use Friendica\DI;
+
 require_once("mod/notes.php");
 
 function update_notes_content(App $a) {
@@ -28,12 +31,8 @@ function update_notes_content(App $a) {
 
        $text = notes_content($a, $profile_uid);
 
-       $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
-       $replace = "<img\${1} dst=\"\${2}\"";
-       $text = preg_replace($pattern, $replace, $text);
-
-       if (get_pconfig(local_user(), "system", "bandwith_saver")) {
-               $replace = "<br />".t("[Embedded content - reload page to view]")."<br />";
+       if (DI::pConfig()->get(local_user(), "system", "bandwidth_saver")) {
+               $replace = "<br />" . DI::l10n()->t("[Embedded content - reload page to view]") . "<br />";
                $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
                $text = preg_replace($pattern, $replace, $text);
                $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";
@@ -48,5 +47,5 @@ function update_notes_content(App $a) {
        echo str_replace("\t", "       ", $text);
        echo "</section>";
        echo "</body></html>\r\n";
-       killme();
+       exit();
 }
\ No newline at end of file