diff --git a/public_html/deployment/classes/project.class.php b/public_html/deployment/classes/project.class.php index 7b4fe3f9060231bc997e8a38971f2417302767d1..4ed505a7e2da966d940321b63601988ef7b9be6c 100644 --- a/public_html/deployment/classes/project.class.php +++ b/public_html/deployment/classes/project.class.php @@ -2433,12 +2433,14 @@ class project extends base { . 'color: rgba(' . ($iFgStart + round(hexdec(substr($sHash,0,3))/$iFgDivider)) . ',' . ($iFgStart + round(hexdec(substr($sHash,3,3))/$iFgDivider)) . ',' - . ($iFgStart + round(hexdec(substr($sHash,6,3))/$iFgDivider)) + . ($iFgStart + round(hexdec(substr($sHash,6,3))/$iFgDivider)) . ',' + . '1' . ');' . 'background: rgba(' . ($iBgStart + round(hexdec(substr($sHash,0,3))/$iBgDivider)) . ',' . ($iBgStart + round(hexdec(substr($sHash,3,3))/$iBgDivider)) . ',' - . ($iBgStart + round(hexdec(substr($sHash,6,3))/$iBgDivider)) + . ($iBgStart + round(hexdec(substr($sHash,6,3))/$iBgDivider)) . ',' + . '1' . ');' ; } else { @@ -2977,8 +2979,9 @@ class project extends base { $oHtml->getIconByType('calendar') . t('build-from') . ' ' . date("d.m.Y H:i:s", strtotime($aInfos["date"])) . '<br>' . $oHtml->getIconByType('branch') . t('branch') . ': ' . $aInfos["branch"] . '<br>' . $oHtml->getIconByType('revision') . t('revision') . ': ' . $this->_renderRevision($aInfos["revision"]) . '<br>' + . $oHtml->getIconByType('comment') . t('commitmessage') . ': ' ) - . $oHtml->getIconByType('comment') . t('commitmessage') . ':<br><span class="pre">' . strip_tags($aInfos["message"], '<br>') . '</span>'; + . '<pre>' . strip_tags($aInfos["message"], '<br>') . '</pre>'; if (array_key_exists("more", $aOptions)) { $sInfos.=$aOptions["more"]; }