Skip to content

Commit

Permalink
Fix for space missing in RSS feed before "was developed by"
Browse files Browse the repository at this point in the history
git-svn-id: https://xerteonlinetoolkits.googlecode.com/svn/trunk@934 912cdd6b-5c7d-d5a7-a2ba-d0f0cdb91641
  • Loading branch information
JohnSmith-LT committed May 22, 2013
1 parent d2cc1ce commit ebb9712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rss.php
Expand Up @@ -124,7 +124,7 @@
echo "<item>
<title>" . str_replace("_"," ",$row['template_name']) . "</title>
<link><![CDATA[" . $xerte_toolkits_site->site_url . url_return($action, $row['template_id']) . "]]></link>
<description><![CDATA[" . $row['description'] . "<br><br>" . str_replace("_"," ",$row['template_name']) . RSS_DEVELOP . $user . "]]></description>
<description><![CDATA[" . $row['description'] . "<br><br>" . str_replace("_"," ",$row['template_name']) . " " . RSS_DEVELOP . $user . "]]></description>
<pubDate>" . date(DATE_RSS, strtotime($row['date_created'])) . "</pubDate>
<guid><![CDATA[" . $xerte_toolkits_site->site_url . url_return($action, $row['template_id']) . "]]></guid>
</item>\n";
Expand Down

0 comments on commit ebb9712

Please sign in to comment.