Skip to content

Commit

Permalink
Remove “BMXFEED: “ from feed titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Morris committed Aug 31, 2024
1 parent b3f0537 commit a8158b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Views/xml/rss.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
echo "<item>\n";
$row->video_title = str_replace(',', '', $row->video_title);

echo '<title>BMXFEED: ' . $row->video_title . "</title>\n";
echo '<title>' . $row->video_title . "</title>\n";
echo '<link>https://bmxfeed.com/video/' . $row->video_id . "</link>\n";
echo '<description>Uploaded by ' . htmlspecialchars($row->video_source_username ?? '', ENT_QUOTES | ENT_IGNORE, 'UTF-8') . ' on ' . date('F j g:ia', strtotime($row->video_date_uploaded)) . ".</description>\n";
echo "<content:encoded>\n";
Expand Down

0 comments on commit a8158b9

Please sign in to comment.