Skip to content
Snippets Groups Projects
Commit 3fdcdfbb authored by colemanw's avatar colemanw
Browse files

Fix undefined var

parent 9b0a4617
No related branches found
No related tags found
No related merge requests found
......@@ -425,8 +425,8 @@ class InstallRequirements {
$configIDSiniDir = NULL;
global $cmsPath;
$siteDir = getSiteDir($cmsPath, $_SERVER['SCRIPT_FILENAME']);
if ($installType == 'drupal') {
$siteDir = getSiteDir($cmsPath, $_SERVER['SCRIPT_FILENAME']);
// make sure that we can write to sites/default and files/
$writableDirectories = array(
......@@ -964,7 +964,7 @@ class InstallRequirements {
return TRUE;
}
else {
$testDetails[2] .= " (the following PHP variables are missing: " . implode(", ", $missing) . ")";
$testDetails[2] = " (the following PHP variables are missing: " . implode(", ", $missing) . ")";
$this->error($testDetails);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment