diff --git a/module/productplan/view/browsebylist.html.php b/module/productplan/view/browsebylist.html.php
index 9aebfe29e2..cd6dc6fdf4 100644
--- a/module/productplan/view/browsebylist.html.php
+++ b/module/productplan/view/browsebylist.html.php
@@ -113,10 +113,13 @@
' title="title?>">
parent > 0 and !isset($plans[$plan->parent])) $prefix = "{$this->lang->productplan->childrenAB}";
if($plan->end < $today and in_array($plan->status, array('wait', 'doing'))) $suffix = "{$this->lang->productplan->expired}";
if($plan->parent == '-1' and isset($plan->children)) $suffix .= '';
if(!empty($suffix)) echo ' ';
+ if(!empty($prefix)) echo $prefix;
echo html::a(inlink('view', "id=$plan->id"), $plan->title);
if(!empty($suffix)) echo $suffix . ' ';
?>
|