This commit is contained in:
Mike Macgirvin 2024-07-22 07:43:39 +10:00
parent d308ffd0f3
commit 02f51ec7ff
2 changed files with 3 additions and 1 deletions

View file

@ -46,6 +46,8 @@ Planned support:
- ~~FEP-f1d5: Nodeinfo in FediverseSoftware~~ Take your trackers and MAUs and stick them where the sun don't shine.
- ~~FEP-eb48: Hashtags~~ Hashtags were once called "folksonomy"; created by **people** for their own needs. We support multiword hashtags and hashtags with emojis and other special characters, because people asked for them. We will not be removing this support.
- ~~FEP-a5c5: Web Syndication Methods~~ Since you don't know if a provider will support Atom or RSS or both or neither, use Link discovery, which is a well established technology -- rather than depending on named route components.
## C2S

View file

@ -63,7 +63,7 @@ class Replies extends Controller
if ($xchans) {
$hashes = ids_to_querystr($xchans, 'xchan_hash', true);
$i = q(
"select item.* id as item_id from item where mid = '%s' $item_normal and owner_xchan in ( " . protect_sprintf($hashes) . " ) limit 1",
"select item.*, id as item_id from item where mid = '%s' $item_normal and owner_xchan in ( " . protect_sprintf($hashes) . " ) limit 1",
dbesc($test[0]['mid'])
);
}