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