mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
Updates for community pages do work now
This commit is contained in:
parent
b677bdd4ff
commit
ade987db47
3 changed files with 10 additions and 8 deletions
|
@ -139,7 +139,9 @@ function community_content(App $a, $update = 0) {
|
|||
|
||||
$o .= conversation($a, $s, 'community', $update);
|
||||
|
||||
$o .= alt_pager($a, count($r));
|
||||
if (!$update) {
|
||||
$o .= alt_pager($a, count($r));
|
||||
}
|
||||
|
||||
$t = get_markup_template("community.tpl");
|
||||
return replace_macros($t, array(
|
||||
|
|
|
@ -8,12 +8,12 @@ use Friendica\Core\PConfig;
|
|||
require_once("mod/community.php");
|
||||
|
||||
function update_community_content(App $a) {
|
||||
|
||||
header("Content-type: text/html");
|
||||
echo "<!DOCTYPE html><html><body>\r\n";
|
||||
echo "<section>";
|
||||
|
||||
$text = community_content($a, true);
|
||||
|
||||
$pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
|
||||
$replace = "<img\${1} dst=\"\${2}\"";
|
||||
$text = preg_replace($pattern, $replace, $text);
|
||||
|
@ -34,4 +34,4 @@ function update_community_content(App $a) {
|
|||
echo "</section>";
|
||||
echo "</body></html>\r\n";
|
||||
killme();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue