]> git.mxchange.org Git - friendica.git/blobdiff - mod/update_profile.php
mobile view: show events and admin, but hide pm link
[friendica.git] / mod / update_profile.php
index 5b15f06d30360f9f5211abd1a5be0b89e218870a..72056703958ef0306251773c101d52c5371aea5c 100644 (file)
@@ -6,8 +6,9 @@
  */
 
 use Friendica\App;
-
-require_once("mod/profile.php");
+use Friendica\Core\L10n;
+use Friendica\Core\PConfig;
+use Friendica\Module\Profile;
 
 function update_profile_content(App $a) {
 
@@ -27,14 +28,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 (get_pconfig(local_user(), "system", "bandwith_saver")) {
-               $replace = "<br />".t("[Embedded content - reload page to view]")."<br />";
+       if (PConfig::get(local_user(), "system", "bandwidth_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";
@@ -49,5 +46,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