Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
[Fixed] Fixed a typo that would cause Template Metas to not save prop…
Browse files Browse the repository at this point in the history
…erly
  • Loading branch information
khalwat committed Jul 19, 2016
1 parent 8e92851 commit 7149900
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ Some things to do, and ideas for potential features:
### 1.1.25 -- 2016.07.19

* [Fixed] Fixed an issue with SEO images not rendering properly via the FieldType
* [Fixed] Fixed a typo that would cause Template Metas to not save properly
* [Improved] Added a fallback if `iconv` is not installed for UTF-8 conversion
* [Improved] Explicitly state that the SEO Image must be in JPG, PNG, or GIF format
* [Improved] Updated the README.md
Expand Down
6 changes: 3 additions & 3 deletions controllers/SeomaticController.php
Original file line number Diff line number Diff line change
Expand Up @@ -547,9 +547,9 @@ public function actionSaveMeta()
$model->seoTitle = craft()->request->getPost('seoTitle', $model->seoTitle);
$model->seoDescription = craft()->request->getPost('seoDescription', $model->seoDescription);
$model->seoKeywords = craft()->request->getPost('seoKeywords', $model->seoKeywords);
$model->seoImageTranform = craft()->request->getPost('seoImageTranform', $model->seoImageTranform);
$model->seoFacebookImageTranform = craft()->request->getPost('seoFacebookImageTranform', $model->seoFacebookImageTranform);
$model->seoTwitterImageTranform = craft()->request->getPost('seoTwitterImageTranform', $model->seoTwitterImageTranform);
$model->seoImageTransform = craft()->request->getPost('seoImageTransform', $model->seoImageTransform);
$model->seoFacebookImageTransform = craft()->request->getPost('seoFacebookImageTransform', $model->seoFacebookImageTransform);
$model->seoTwitterImageTransform = craft()->request->getPost('seoTwitterImageTransform', $model->seoTwitterImageTransform);
$model->twitterCardType = craft()->request->getPost('twitterCardType', $model->twitterCardType);
$model->openGraphType = craft()->request->getPost('openGraphType', $model->openGraphType);
$model->robots = craft()->request->getPost('robots', $model->robots);
Expand Down
1 change: 1 addition & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"date": "2016-07-19T11:00:00-11:00",
"notes": [
"[Fixed] Fixed an issue with SEO images not rendering properly via the FieldType",
"[Fixed] Fixed a typo that would cause Template Metas to not save properly",
"[Improved] Added a fallback if `iconv` is not installed for UTF-8 conversion",
"[Improved] Explicitly state that the SEO Image must be in JPG, PNG, or GIF format",
"[Improved] Updated the README.md"
Expand Down

0 comments on commit 7149900

Please sign in to comment.