Skip to content

Commit

Permalink
Fixed #25
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Sep 5, 2017
1 parent e79e7d6 commit 9afe843
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

## Unreleased

### Fixed
- Fixed a bug where sections’ Default Author options were limited to 100 users. ([#25](https://github.com/craftcms/guest-entries/issues/25))

## 1.5.2 - 2016-06-04

### Added
Expand Down
1 change: 1 addition & 0 deletions guestentries/GuestEntriesPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ public function getSettingsHtml()
{
$defaultAuthorOptionCriteria = craft()->elements->getCriteria(ElementType::User);
$defaultAuthorOptionCriteria->can = 'createEntries:'.$value['section']->id;
$defaultAuthorOptionCriteria->limit = null;
$authorOptions = $defaultAuthorOptionCriteria->find();
}
else
Expand Down

0 comments on commit 9afe843

Please sign in to comment.