Skip to content

Commit

Permalink
Last-minute bug fix / release 2.30 (#2169)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcasual authored Oct 14, 2024
2 parents 2f005f6 + c223c1a commit 9b5d0b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions includes/class-admin-welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ public function changelog_screen() {
<li>Survey field (Rating type) values were displayed in reverse order when a View was embedded inside another View.</li>
<li>Unexpected scrolling in the View editor after adding a field.</li>
<li>PHP notice when rendering a View with a field associated with an inactive add-on.</li>
<li>Entry duplication not working on the Entries page.</li>
</ul>

<h4>🔧 Updated</h4>
Expand Down
2 changes: 2 additions & 0 deletions includes/extensions/duplicate-entry/class-duplicate-entry.php
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,8 @@ function ( $messages ) use ( $check_logs_message ) {
return;
}

$entry_id = (int) $_GET['entry_id'] ?? 0;

if ( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gform_full_access', 'gravityview_full_access' ), $entry_id ) ) {
return;
}
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ This release adds the ability to change the entry creator from the Edit Entry sc
* Survey field (Rating type) values were displayed in reverse order when a View was embedded inside another View.
* Unexpected scrolling in the View editor after adding a field.
* PHP notice when rendering a View with a field associated with an inactive add-on.
* Entry duplication not working on the Entries page.

#### 🔧 Updated
* [Foundation](https://www.gravitykit.com/foundation/) to version 1.2.19.
Expand Down

0 comments on commit 9b5d0b3

Please sign in to comment.