Skip to content

Commit

Permalink
Merge pull request #777 from swaschkut/main
Browse files Browse the repository at this point in the history
version 2.1.18 - bugfix
  • Loading branch information
swaschkut committed Sep 20, 2023
2 parents 512ca29 + eca2b7f commit ebf008e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
CHANGELOG

2.1.17
2.1.18
UTIL:

BUGFIX:
* type=address/service 'actions=move:shared,skipIfConflict' | bugfix as variable $findSubSystem was not declared for targetlocation 'shared'

GENERAL:


2.1.17 (20230920)
UTIL:
* type=certificate | extend to TemplateStack
* introduce class SharedGatewayStore | extend different classes to support SharedGateway
Expand Down
2 changes: 1 addition & 1 deletion lib/misc-classes/PH.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function __construct($argv, $argc)

private static $library_version_major = 2;
private static $library_version_sub = 1;
private static $library_version_bugfix = 17;
private static $library_version_bugfix = 18;

//BASIC AUTH PAN-OS 7.1
public static $softwareupdate_key = "658d787f293e631196dac9fb29490f1cc1bb3827";
Expand Down
1 change: 1 addition & 0 deletions utils/common/actions-address.php
Original file line number Diff line number Diff line change
Expand Up @@ -1451,6 +1451,7 @@

if( $targetLocation == 'shared' )
{
$findSubSystem = $rootObject;
$targetStore = $rootObject->addressStore;
}
else
Expand Down
1 change: 1 addition & 0 deletions utils/common/actions-service.php
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,7 @@

if( $targetLocation == 'shared' )
{
$findSubSystem = $rootObject;
$targetStore = $rootObject->serviceStore;
}
else
Expand Down

0 comments on commit ebf008e

Please sign in to comment.