diff --git a/public_html/deployment/classes/project.class.php b/public_html/deployment/classes/project.class.php index 661f24a406e5254d8a0e9f53c16f6992d619e133..ac48597b0e27accfabc44b01084b3b5352804f08 100644 --- a/public_html/deployment/classes/project.class.php +++ b/public_html/deployment/classes/project.class.php @@ -1725,21 +1725,16 @@ class project extends base { if (array_key_exists('haspublic', $this->_aPrjConfig["build"]) && $this->_aPrjConfig["build"]["haspublic"][0] ){ - $sReturn.='<p>DO check for docroot<p>'; $sWebroot = false; $sWebroot1 = $sTempBuildDir . '/public_html'; $sWebroot2 = $sTempBuildDir . '/public'; - $sReturn.="<p>1 - $sWebroot1<br>2 - $sWebroot2<p>"; if (file_exists($sWebroot1)) { - $sReturn.="OK 1 - $sWebroot1<br>"; $sWebroot = $sWebroot1; } if (file_exists($sWebroot2)) { - $sReturn.="OK 2 - $sWebroot2<br>"; $sWebroot = $sWebroot2; } - $sReturn.="webroot = $sWebroot<br>"; if (!$sWebroot) { $this->_TempDelete($sTempBuildDir); $sError = t('class-project-error-build-docroot-not-found');