]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_profile.php
Move /profile_photo to Module\Settings\Profile\Photo
[friendica.git] / mod / update_profile.php
index 1a05130e0a52b562cbd09935eff8359c3f851652..348a384c2ef6293e80f4cffbbb1193d8e445874f 100644 (file)
@@ -6,10 +6,8 @@
  */
 
 use Friendica\App;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
-
-require_once 'mod/profile.php';
+use Friendica\DI;
+use Friendica\Module\Profile;
 
 function update_profile_content(App $a) {
 
@@ -29,14 +27,10 @@ function update_profile_content(App $a) {
         * on the client side and then swap the image back.
         */
 
-       $text = profile_content($a, $profile_uid);
-
-       $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
-       $replace = "<img\${1} dst=\"\${2}\"";
-       $text = preg_replace($pattern, $replace, $text);
+       $text = Profile::content([], $profile_uid);
 
-       if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
-               $replace = "<br />".L10n::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";
@@ -51,5 +45,5 @@ function update_profile_content(App $a) {
        echo str_replace("\t", "       ", $text);
        echo "</section>";
        echo "</body></html>\r\n";
-       killme();
+       exit();
 }
\ No newline at end of file