X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_display.php;h=581d5d97a2535c227a9c8b2ecd006d4ca0c9e1bf;hb=8e6f676719c027c6288b8ffa5ec6842c899c62dd;hp=9400cb39a6f02ba01094d6a4f2e5730cca82cbd0;hpb=0c67c89715df801e0c887be50c9739db3bae7ca3;p=friendica.git diff --git a/mod/update_display.php b/mod/update_display.php index 9400cb39a6..581d5d97a2 100644 --- a/mod/update_display.php +++ b/mod/update_display.php @@ -1,39 +1,36 @@ \r\n"; - echo "
"; - - - $text = display_content($a,$profile_uid); - $pattern = "/]*) src=\"([^\"]*)\"/"; - $replace = "'; - $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i"; - $text = preg_replace($pattern, $replace, $text); - - - echo str_replace("\t",' ',$text); - echo "
"; - echo "\r\n"; - killme(); -} +/** + * @copyright Copyright (C) 2010-2022, the Friendica project + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + * See update_profile.php for documentation + */ + +use Friendica\App; +use Friendica\Core\System; +use Friendica\DI; + +require_once "mod/display.php"; + +function update_display_content(App $a) +{ + $profile_uid = intval($_GET["p"]); + + $text = display_content($a, true, $profile_uid); + + System::htmlUpdateExit($text); }