diff --git a/module/bug/view/browse.html.php b/module/bug/view/browse.html.php
index 8c2b3e3660..1b66db7390 100644
--- a/module/bug/view/browse.html.php
+++ b/module/bug/view/browse.html.php
@@ -44,7 +44,7 @@ $currentBrowseType = isset($lang->bug->mySelects[$browseType]) && in_array($brow
$menuBrowseType = strpos($menuItem->name, 'QUERY') === 0 ? 'bySearch' : $menuItem->name;
$label = "{$menuItem->text}";
- $label .= $menuBrowseType == $browseType ? "{$pager->recTotal}" : '';
+ $label .= $menuBrowseType == $browseType ? " {$pager->recTotal}" : '';
$active = $menuBrowseType == $browseType ? 'btn-active-text' : '';
if($menuItem->name == 'my')
@@ -92,7 +92,7 @@ $currentBrowseType = isset($lang->bug->mySelects[$browseType]) && in_array($brow
$moreLabelActive = '';
if(isset($lang->bug->moreSelects[$browseType]))
{
- $moreLabel = "{$lang->bug->moreSelects[$browseType]}{$pager->recTotal}";
+ $moreLabel = "{$lang->bug->moreSelects[$browseType]} {$pager->recTotal}";
$moreLabelActive = 'btn-active-text';
}
echo "
{$moreLabel} ";
diff --git a/module/product/view/all.html.php b/module/product/view/all.html.php
index 512088a330..01a55005ff 100644
--- a/module/product/view/all.html.php
+++ b/module/product/view/all.html.php
@@ -23,7 +23,7 @@
foreach($lang->product->featureBar['all'] as $key => $label)
{
$label = "
{$label}";
- $label .= $key == $status ? "
{$pager->recTotal}" : '';
+ $label .= $key == $status ? "
{$pager->recTotal}" : '';
$active = $key == $status ? 'btn-active-text' : '';
echo html::a(inlink("all", "productID={$productID}&line=&status={$key}"), $label, '', "class='btn btn-link {$active}' id='{$key}'");
}
diff --git a/module/product/view/build.html.php b/module/product/view/build.html.php
index 5ccfd7d379..9c77f5a3ed 100644
--- a/module/product/view/build.html.php
+++ b/module/product/view/build.html.php
@@ -15,7 +15,7 @@
global->flow == 'full'):?>
id", " " . $lang->build->create, '', "class='btn btn-primary'");?>
diff --git a/module/productplan/view/browse.html.php b/module/productplan/view/browse.html.php
index 2ad8f26266..1688f0fe08 100644
--- a/module/productplan/view/browse.html.php
+++ b/module/productplan/view/browse.html.php
@@ -18,7 +18,7 @@
moduleName, $this->methodName) as $menuItem):?>
hidden)) continue;?>
{$menuItem->text}";?>
- name == $browseType ? "
{$pager->recTotal}" : '';?>
+ name == $browseType ? "
{$pager->recTotal}" : '';?>
name == $browseType ? 'btn-active-text' : '';?>
inlink('browse', "productID=$productID&branch=$branch&browseType={$menuItem->name}"), $label, '', "class='btn btn-link $active' id='{$menuItem->name}'");?>
diff --git a/module/project/view/story.html.php b/module/project/view/story.html.php
index aeedd26bd9..729666b109 100644
--- a/module/project/view/story.html.php
+++ b/module/project/view/story.html.php
@@ -30,7 +30,7 @@
diff --git a/module/project/view/storykanban.html.php b/module/project/view/storykanban.html.php
index a3cd405283..d1f2a9654d 100644
--- a/module/project/view/storykanban.html.php
+++ b/module/project/view/storykanban.html.php
@@ -18,7 +18,7 @@
createLink('project', 'story', "projectID=$project->id"), "{$lang->story->allStories}", '', "class='btn btn-link'");?>
- createLink('project', 'storykanban', "projectID=$project->id"), "{$lang->project->kanban}{$total}", '', "class='btn btn-link btn-active-text'");?>
+ createLink('project', 'storykanban', "projectID=$project->id"), "{$lang->project->kanban} {$total}", '', "class='btn btn-link btn-active-text'");?>