diff --git a/public_html/deployment/classes/project.class.php b/public_html/deployment/classes/project.class.php
index 6f12c363a2ec4f98cb3e876d98098d201f856bda..a91804d2ed74ba231f9f0f592510b51234ac69f4 100644
--- a/public_html/deployment/classes/project.class.php
+++ b/public_html/deployment/classes/project.class.php
@@ -3275,12 +3275,16 @@ class project extends base {
         }
 
         $sRepoBar = '';
+        /*
+            Speedup:
+            
         $aRepodata = $this->getRepoRevision();
         if (array_key_exists("revision", $aRepodata)) {
             $sRepoBar = $this->_getChecksumDiv($aRepodata["revision"]);
         } else {
             $sRepoBar = '<span class="error">' . t("error") . '</span>';
         }
+        */
 
         $sPackagebar = '';
         $aVersions = $this->_getVersionUsage();
@@ -3324,9 +3328,8 @@ class project extends base {
                         <a href="#h3repo" class="scroll-link">' . t("repositoryinfos") . '</a><br>
                         -->
                         ' . t("repositoryinfos") . '<br>
-                        <strong>
                         ' . $this->_aPrjConfig["build"]["type"] . '</strong> ' . preg_replace('/.*\@(.*):.*/', '($1)', $this->_aPrjConfig["build"]["url"])
-                    . ': <strong title="' . t('branch-select') . '">' . count($aBranches) . '</strong>'
+                        . ': <strong title="' . t('branch-select') . '">' . count($aBranches) . '</strong>'
                     . '<br>
                     </div>
                     <div>
diff --git a/public_html/deployment/pages/act_overview.php b/public_html/deployment/pages/act_overview.php
index 4a0d40ae672e92019578d3803c13b578257ff1eb..0cfe8e5c297800d51b10808768cef49c021fc6bd 100644
--- a/public_html/deployment/pages/act_overview.php
+++ b/public_html/deployment/pages/act_overview.php
@@ -59,7 +59,7 @@ if (!array_key_exists("prj", $aParams)) {
     } else {
         $sBuildErrorContent=$oHtml->getBox('info', t('build-failes-none'));
     }
-        
+
     $sListOfBranches='<h4>'.t('branch-select').'</h4><ol>';
     foreach($oPrj->getRemoteBranches() as $aBranch){
         $sListOfBranches.='<li title="'.$aBranch['revision'].'">'.$aBranch['label'] . '</li>';