CustomvarTable: do not break

This commit is contained in:
Thomas Gelf 2017-07-14 13:43:28 +02:00
parent 95bbeb28d2
commit b89c337d3b

View File

@ -26,11 +26,11 @@ class CustomvarTable extends ZfQueryBasedTable
); );
foreach ($this->getObjectTypes() as $type) { foreach ($this->getObjectTypes() as $type) {
$tr->add($this::td(sprintf( $tr->add($this::td($this::nobr(sprintf(
$this->translate('%d (variants: %d)'), $this->translate('%d (variants: %d)'),
$row->{"cnt_$type"}, $row->{"cnt_$type"},
$row->{"distinct_$type"} $row->{"distinct_$type"}
))); ))));
} }
return $tr; return $tr;