Skip to content

Commit

Permalink
Merge branch 'develop' into trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
afragen committed Jul 21, 2023
2 parents 42a66af + 912de49 commit 1aa4e51
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[unreleased]

#### 1.14.2 / 2023-07-20
* update guard in `get_dependency_filepaths()`

#### 1.14.1 / 2023-07-20
* update modal button on plugin-install.php

Expand Down
2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Plugin URI: https://wordpress.org/plugins/wp-plugin-dependencies
* Description: Parses 'Requires Plugins' header, add plugin install dependencies tab, and information about dependencies.
* Author: Andy Fragen, Colin Stewart, Paul Biron
* Version: 1.14.1
* Version: 1.14.2
* License: MIT
* Network: true
* Requires at least: 6.0
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Network: true
Requires at least: 6.0
Requires PHP: 5.6
Tested up to: 6.3
Stable tag: 1.14.1
Stable tag: 1.14.2

## Description

Expand Down Expand Up @@ -48,6 +48,9 @@ PRs should be made against the `develop` branch.

## Changelog

#### 1.14.2 / 2023-07-20
* update guard in `get_dependency_filepaths()`

#### 1.14.1 / 2023-07-20
* update modal button on plugin-install.php

Expand Down
2 changes: 1 addition & 1 deletion wp-admin/includes/class-wp-plugin-dependencies.php
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ private function get_circular_dependencies() {
private function get_dependency_filepaths() {
$dependency_filepaths = array();

if ( empty( $this->slugs ) || empty( $this->plugins ) ) {
if ( empty( $this->plugins ) ) {
return $dependency_filepaths;
}

Expand Down

0 comments on commit 1aa4e51

Please sign in to comment.