Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix rss feed item guid
Signed-off-by: mcnesium <[email protected]>
  • Loading branch information
mcnesium committed Jan 25, 2024
commit 5a08515a7ce0079cd99702f522ef171d814527b2
2 changes: 1 addition & 1 deletion templates/rss.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<atom:link href="<?php p($_['rssLink']); ?>" rel="self" type="application/rss+xml" />
<?php foreach ($_['activities'] as $activity) { ?>
<item>
<guid isPermaLink="false"><?php p($activity['activity_id']); ?></guid>
<guid isPermaLink="false"><?php p($_['rssLink']); echo "?id="; p($activity['activity_id']); ?></guid>
<?php if (!empty($activity['subject'])): ?>
<title><?php p(str_replace("\n", ' ', $activity['subject'])); ?></title>
<?php endif; ?>
Expand Down