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

Commit

Permalink
[Fixed] Fixed an Integrity constraint violation MySQL error on cert…
Browse files Browse the repository at this point in the history
…ain MySQL versions
  • Loading branch information
Andrew Welch committed Sep 6, 2016
1 parent 57fbf8f commit d06340f
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 @@ -65,6 +65,7 @@ Some things to do, and ideas for potential features:

* [Fixed] Fixed a regression that would cause Twitter and Facebook images to not show up
* [Improved] Added html_entity_decode() to the _cleanupText() method
* [Fixed] Fixed an `Integrity constraint violation` MySQL error on certain MySQL versions
* [Improved] Updated the README.md

### 1.1.34 -- 2016.09.05
Expand Down
6 changes: 3 additions & 3 deletions models/Seomatic_SettingsModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ protected function defineAttributes()
'siteSeoKeywords' => array(AttributeType::String, 'default' => 'default,global,comma-separated,keywords'),
'siteTwitterCardType' => array(AttributeType::String, 'default' => 'summary'),
'siteOpenGraphType' => array(AttributeType::String, 'default' => 'website'),
'siteSeoImageId' => array(AttributeType::Number, 'default' => null),
'siteSeoTwitterImageId' => array(AttributeType::Number, 'default' => null),
'siteSeoFacebookImageId' => array(AttributeType::Number, 'default' => null),
'siteSeoImageId' => array(AttributeType::Number, 'default' => 0),
'siteSeoTwitterImageId' => array(AttributeType::Number, 'default' => 0),
'siteSeoFacebookImageId' => array(AttributeType::Number, 'default' => 0),
'siteSeoImageTransform' => array(AttributeType::String, 'default' => ''),
'siteSeoFacebookImageTransform' => array(AttributeType::String, 'default' => ''),
'siteSeoTwitterImageTransform' => array(AttributeType::String, 'default' => ''),
Expand Down
1 change: 1 addition & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"notes": [
"[Fixed] SEOmetrics will now work if `open_basedir` is set",
"[Improved] Added html_entity_decode() to the _cleanupText() method",
"[Fixed] Fixed an `Integrity constraint violation` MySQL error on certain MySQL versions",
"[Improved] Updated the README.md"
]
},
Expand Down

0 comments on commit d06340f

Please sign in to comment.