2012-11-02 01:36:11 +01:00
|
|
|
<?php
|
2018-01-22 13:29:50 +01:00
|
|
|
/**
|
|
|
|
* @file mod/update_display.php
|
|
|
|
* See update_profile.php for documentation
|
|
|
|
*/
|
2012-11-02 01:36:11 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-22 13:29:50 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\PConfig;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-12-09 19:42:02 +01:00
|
|
|
require_once "mod/display.php";
|
2016-10-23 03:33:54 +02:00
|
|
|
|
2017-12-09 19:42:02 +01:00
|
|
|
function update_display_content(App $a)
|
|
|
|
{
|
2016-10-23 03:33:54 +02:00
|
|
|
$profile_uid = intval($_GET["p"]);
|
|
|
|
|
|
|
|
header("Content-type: text/html");
|
|
|
|
echo "<!DOCTYPE html><html><body>\r\n";
|
|
|
|
echo "<section>";
|
|
|
|
|
2017-12-20 11:16:25 +01:00
|
|
|
$text = display_content($a, true, $profile_uid);
|
2016-10-23 03:33:54 +02:00
|
|
|
|
2018-05-30 08:50:29 +02:00
|
|
|
if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
|
2018-01-22 13:29:50 +01:00
|
|
|
$replace = "<br />" . L10n::t("[Embedded content - reload page to view]") . "<br />";
|
2016-10-23 03:33:54 +02:00
|
|
|
$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 "</section>";
|
|
|
|
echo "</body></html>\r\n";
|
|
|
|
killme();
|
2012-11-02 01:36:11 +01:00
|
|
|
}
|