Skip to content
Snippets Groups Projects

5534 add docker

1 file
+ 6
3
Compare changes
  • Side-by-side
  • Inline
@@ -868,7 +868,9 @@ class project extends base {
}
/**
* get deploy and queue infos for all phases
* @return type
* It build up a subkey "progress" with info if a build is queued
* or an installation of a new package is going on
* @return array
*/
public function getAllPhaseInfos() {
@@ -891,8 +893,9 @@ class project extends base {
$aDataPhase = $this->_aData["phases"][$sPhase];
foreach (array_keys($this->getPlaces()) as $sPlace) {
if (
array_key_exists($sPlace, $aDataPhase)
&& array_key_exists('version', $aDataPhase[$sPlace])
$sPlace!=='onhold'
&& array_key_exists($sPlace, $aDataPhase)
// && array_key_exists('version', $aDataPhase[$sPlace])
) {
if($bFirstVersion && !$bHasDifferentVersions && $bFirstVersion!==$aDataPhase[$sPlace]['version']){
$bHasDifferentVersions=true;
Loading