Skip to content
Snippets Groups Projects
Commit b4c4706c authored by hahn's avatar hahn
Browse files

task#1680 - fix warning because of missing var

fix type in config check
parent 3c892f38
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ $aParams = array();
'archiveDir',
) as $sKey){
if (!is_dir($aConfig[$sKey])){
$aErrors[]="* \$aConfig['$sKey'] pints to a non existing directory (".$aConfig[$sKey].").\n";
$aErrors[]="* \$aConfig['$sKey'] points to a non existing directory (".$aConfig[$sKey].").\n";
} else {
if (!is_writable($aConfig[$sKey])){
$aErrors[]="* \$aConfig['$sKey'] = ".$aConfig[$sKey]." is NOT writable.\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment