From b89c337d3b425375b3fe90c43f9dd4fdef4d8c78 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 14 Jul 2017 13:43:28 +0200 Subject: [PATCH] CustomvarTable: do not break --- library/Director/Web/Table/CustomvarTable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Director/Web/Table/CustomvarTable.php b/library/Director/Web/Table/CustomvarTable.php index 9bc42e81..451ebfcf 100644 --- a/library/Director/Web/Table/CustomvarTable.php +++ b/library/Director/Web/Table/CustomvarTable.php @@ -26,11 +26,11 @@ class CustomvarTable extends ZfQueryBasedTable ); foreach ($this->getObjectTypes() as $type) { - $tr->add($this::td(sprintf( + $tr->add($this::td($this::nobr(sprintf( $this->translate('%d (variants: %d)'), $row->{"cnt_$type"}, $row->{"distinct_$type"} - ))); + )))); } return $tr;