]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_notes.php
more translations done
[friendica.git] / mod / update_notes.php
index ee9d1d71f56a7f25fabb46e8e7ad51d3977975c4..e369261128444cc2a3f221639f433221825228ad 100644 (file)
@@ -5,9 +5,13 @@
  * Purpose: AJAX synchronisation of notes page
  */
 
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Core\PConfig;
+
 require_once("mod/notes.php");
 
-function update_notes_content(&$a) {
+function update_notes_content(App $a) {
 
        $profile_uid = intval($_GET["p"]);
 
@@ -32,8 +36,8 @@ function update_notes_content(&$a) {
        $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 (PConfig::get(local_user(), "system", "bandwith_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);
                $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";