forked from jason/cpolis
		
	Add space between first and last name
This commit is contained in:
		@@ -97,7 +97,7 @@ func GenerateRSS(db *model.DB, title, link, desc string) (*string, error) {
 | 
			
		||||
 | 
			
		||||
		channel.Items = append(channel.Items, &rss.Item{
 | 
			
		||||
			Title:       articleTitle,
 | 
			
		||||
			Author:      user.FirstName + user.LastName,
 | 
			
		||||
			Author:      user.FirstName + " " + user.LastName,
 | 
			
		||||
			PubDate:     article.Created.Format(time.RFC1123Z),
 | 
			
		||||
			Description: articleDescription,
 | 
			
		||||
			Content:     &rss.Content{Value: articleContent},
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user