mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Bugfix: Posts weren't always shown for feeds that start with "www."
This commit is contained in:
parent
e8b13bacec
commit
300007a0cf
1 changed files with 2 additions and 2 deletions
|
@ -903,7 +903,7 @@ function contact_posts($a, $contact_id) {
|
||||||
$r = q("SELECT COUNT(*) AS `total` FROM `item`
|
$r = q("SELECT COUNT(*) AS `total` FROM `item`
|
||||||
WHERE `item`.`uid` = %d AND `author-link` IN ('%s', '%s')",
|
WHERE `item`.`uid` = %d AND `author-link` IN ('%s', '%s')",
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
dbesc(normalise_link($contact["url"])),
|
dbesc(str_replace("https://", "http://", $contact["url"])),
|
||||||
dbesc(str_replace("http://", "https://", $contact["url"])));
|
dbesc(str_replace("http://", "https://", $contact["url"])));
|
||||||
|
|
||||||
$a->set_pager_total($r[0]['total']);
|
$a->set_pager_total($r[0]['total']);
|
||||||
|
@ -918,7 +918,7 @@ function contact_posts($a, $contact_id) {
|
||||||
ORDER BY `item`.`created` DESC LIMIT %d, %d",
|
ORDER BY `item`.`created` DESC LIMIT %d, %d",
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
intval($contact_id),
|
intval($contact_id),
|
||||||
dbesc(normalise_link($contact["url"])),
|
dbesc(str_replace("https://", "http://", $contact["url"])),
|
||||||
dbesc(str_replace("http://", "https://", $contact["url"])),
|
dbesc(str_replace("http://", "https://", $contact["url"])),
|
||||||
intval($a->pager['start']),
|
intval($a->pager['start']),
|
||||||
intval($a->pager['itemspage'])
|
intval($a->pager['itemspage'])
|
||||||
|
|
Loading…
Reference in a new issue