We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When a machine in $a_backupHosts does not have the 'excludes' key set a php notice is generated.
$tmp_excludes = preg_split('/([^\\])\s/', $a_backupHosts[$s_configName]['excludes'], -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
does not check the existence of the array key before referencing it.
TOTALLY MINOR. A work around is to include 'excludes' => '', in the host config.
The text was updated successfully, but these errors were encountered:
jrust#3 Undefined index when excludes is not set on a backup config
e585061
No longer processes the excludes args if it isn't set
Merge pull request #6 from dlundgren/gh-3
0d103d7
#3 Undefined index when excludes is not set on a backup config
No branches or pull requests
When a machine in $a_backupHosts does not have the 'excludes' key set a php notice is generated.
$tmp_excludes = preg_split('/([^\\])\s/', $a_backupHosts[$s_configName]['excludes'], -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
does not check the existence of the array key before referencing it.
TOTALLY MINOR. A work around is to include 'excludes' => '', in the host config.
The text was updated successfully, but these errors were encountered: