Skip to content

Commit

Permalink
Fixed #15
Browse files Browse the repository at this point in the history
Fixed #15 - Fixed bug where global settings undefined on new install
  • Loading branch information
Tam committed Jul 7, 2016
1 parent 206d4bb commit d88b5e7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ All parameters are optional.

## Changelog

### 1.1.3
- Fixed #15 - Fixed bug where global settings undefined on new install

### 1.1.2
- Fix #12 via @FrankZwiers - Fix for php error on adding a Quick Post widget
- Fixed #11 - Fixed bug causing an Uncaught TypeError when no paragraphs are on the page
Expand Down
2 changes: 1 addition & 1 deletion SeoPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function getDescription()

public function getVersion()
{
return '1.1.2';
return '1.1.3';
}

public function getSchemaVersion()
Expand Down
8 changes: 8 additions & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,13 @@
"- Fixed text parser reading script tags as text",
"- SEO Field now uses minified JS"
]
},
{
"version": "1.1.3",
"downloadUrl": "https://github.com/ethercreative/seo/archive/v1.1.3.zip",
"date": "2016-07-07T11:00:00-08:00",
"notes": [
"- Fixed #15 - Fixed bug where global settings undefined on new install"
]
}
]
2 changes: 1 addition & 1 deletion templates/_seo-fieldtype-settings.twig
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
instructions: 'A string appended, after a space, to the page title. This can be removed on a per-entry basis.',
name: 'titleSuffix',
id: 'titleSuffix',
value: settings.titleSuffix is defined and settings.titleSuffix != "" ? settings.titleSuffix : globalSettings.titleSuffix
value: settings.titleSuffix is defined and settings.titleSuffix != "" ? settings.titleSuffix : globalSettings is defined ? globalSettings.titleSuffix : ""
}) }}

0 comments on commit d88b5e7

Please sign in to comment.