0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Removed Username From Initial Blog Description

closes #3631
- Removed the 'by + setupUser.name' from authentication.js
- Removed the 'by Test User' from feed_test.js
- Added a '.' to the end of each per issue comment example
This commit is contained in:
David Balderston 2014-08-08 07:47:56 -07:00
parent 8cf270aad2
commit 99e77cab3c
2 changed files with 2 additions and 2 deletions

View file

@ -202,7 +202,7 @@ authentication = {
// Handles the additional values set by the setup screen.
if (!_.isEmpty(setupUser.blogTitle)) {
userSettings.push({key: 'title', value: setupUser.blogTitle});
userSettings.push({key: 'description', value: 'Thoughts, stories and ideas by ' + setupUser.name});
userSettings.push({key: 'description', value: 'Thoughts, stories and ideas.'});
}
setupUser = user.toJSON();
return settings.edit({settings: userSettings}, {context: {user: setupUser.id}});

View file

@ -7,7 +7,7 @@ CasperTest.begin('Ensure that RSS is available', 11, function suite(test) {
casper.thenOpen(url + 'rss/', function (response) {
var content = this.getHTML(),
siteTitle = '<title><![CDATA[Test Blog]]></title>',
siteDescription = '<description><![CDATA[Thoughts, stories and ideas by Test User]]></description>',
siteDescription = '<description><![CDATA[Thoughts, stories and ideas.]]></description>',
siteUrl = '<link>http://127.0.0.1:2369/</link>',
postTitle = '<![CDATA[Welcome to Ghost]]>',
postStart = '<description><![CDATA[<p>You\'re live!',