Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.6'
Browse files Browse the repository at this point in the history
* release/1.0.6:
  Changelog for 1.0.6.
  Chaning the `template` attribute to be 255.
  • Loading branch information
joshangell committed Jan 28, 2019
2 parents 2447007 + 1621881 commit 28eaa1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## Unreleased

## 1.0.6 - 2019-01-28

### Fixed
- Fixed an issue with the length of the template attribute in MySQL 5.6 ([#5](https://github.com/angell-co/Portal/issues/5)).


## 1.0.5 - 2018-09-27

Expand Down
2 changes: 1 addition & 1 deletion src/models/Target_SiteSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public function rules()
$rules = [
[ [ 'id', 'targetId', 'siteId' ], 'number', 'integerOnly' => true ],
[ [ 'siteId' ], SiteIdValidator::class ],
[ [ 'template' ], 'string', 'max' => 500 ]
[ [ 'template' ], 'string', 'max' => 255 ]
];

return $rules;
Expand Down

0 comments on commit 28eaa1b

Please sign in to comment.