]> 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 5b15f06d30360f9f5211abd1a5be0b89e218870a..4d1f158b39dd9f12871e1e8c5546a286cfc65601 100644 (file)
@@ -6,8 +6,10 @@
  */
 
 use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Core\PConfig;
 
-require_once("mod/profile.php");
+require_once 'mod/profile.php';
 
 function update_profile_content(App $a) {
 
@@ -33,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";