Skip to content
English
  • There are no suggestions because the search field is empty.

When saving the powerJobs settings dialog multiple settings that start with the same name are overridden with incorrect value

Issue

When a powerJobs setting starts with the name of another setting its value is changed to the value of the setting its name starts with, when the dialogue is saved

Example

$vault = "Vault" 
$vaultUser = "Administrator"

When saving this will result in

$vault = "Vault"
$vaultUser = "Something"

Solution

Ensure that no setting starts with the name of another setting.

Example

$vault = "Vault" 
$vaultUser = "Administrator"

Change it to

$vaultName = "Vault" 
$vaultUser = "Administrator"