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
Prev Previous commit
Next Next commit
improve string concatenation
Co-authored-by: Ferdinand Thiessen <[email protected]>
Signed-off-by: mcnesium <[email protected]>
  • Loading branch information
mcnesium and susnux authored Jan 30, 2024
commit 2cc730e0f628cb9a138bb4b0352dcda7a73114be
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($_['rssLink']); echo "?id="; p($activity['activity_id']); ?></guid>
<guid isPermaLink="false"><?php p($_['rssLink'] . '?id=' . $activity['activity_id']); ?></guid>
<?php if (!empty($activity['subject'])): ?>
<title><?php p(str_replace("\n", ' ', $activity['subject'])); ?></title>
<?php endif; ?>
Expand Down