diff --git a/public_html/deployment/classes/project.class.php b/public_html/deployment/classes/project.class.php index 578ed0ad99fbba94fe0f2f794d518993dd8dbd4b..88576602eae27141645f1700aa4d909e66245775 100644 --- a/public_html/deployment/classes/project.class.php +++ b/public_html/deployment/classes/project.class.php @@ -1221,8 +1221,8 @@ class project extends base { * @param bool $bIgnoreCache flag to ignore exiting cached data * @return string */ - public function renderSelectRemoteBranches($sActiveBranchname = false, $bForceNoCache=false) { - $this->log(__FUNCTION__."(sActiveBranchname = $sActiveBranchname, bForceNoCache = ".($bForceNoCache ? 'true' : 'false').") start"); + public function renderSelectRemoteBranches($sActiveBranchname = false, $bIgnoreCache=false) { + $this->log(__FUNCTION__."(sActiveBranchname = $sActiveBranchname, bIgnoreCache = ".($bIgnoreCache ? 'true' : 'false').") start"); $aReturn = array(); $aRadios = array(); $bFoundActive = false; @@ -1239,7 +1239,7 @@ class project extends base { // the version control class does not have this method return ''; } - foreach ($this->_oVcs->getRemoteBranches($bForceNoCache) as $aBranch) { + foreach ($this->_oVcs->getRemoteBranches($bIgnoreCache) as $aBranch) { $sBranch = $aBranch['name']; $aRadios[$sBranch] = array( 'value' => $sBranch,