]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_profile.php
Docs: add a note on adding `use` on theme.php
[friendica.git] / mod / update_profile.php
index e16b0b5cccbe58126ca678c126aaefeba60ce7f7..4d1f158b39dd9f12871e1e8c5546a286cfc65601 100644 (file)
@@ -5,9 +5,13 @@
  * Purpose: AJAX synchronisation of profile page
  */
 
-require_once("mod/profile.php");
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Core\PConfig;
 
-function update_profile_content(App &$a) {
+require_once 'mod/profile.php';
+
+function update_profile_content(App $a) {
 
        $profile_uid = intval($_GET["p"]);
 
@@ -31,8 +35,8 @@ function update_profile_content(App &$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";