Skip to content

Commit

Permalink
improve string concatenation
Browse files Browse the repository at this point in the history
Co-authored-by: Ferdinand Thiessen <[email protected]>
Signed-off-by: mcnesium <[email protected]>
  • Loading branch information
2 people authored and backportbot[bot] committed Jan 31, 2024
1 parent 4b441d7 commit bd376ff
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit bd376ff

Please sign in to comment.