Skip to content
Snippets Groups Projects
Commit 89ccdbd7 authored by Dorian Merz's avatar Dorian Merz Committed by Robert Lange
Browse files

refs #16122 [finc] bugfix avoid call of count() on null

parent 42390575
No related merge requests found
......@@ -125,7 +125,7 @@ $thumbnailAlignment = $this->record($this->driver)->getThumbnailAlignment('list'
<?php endforeach; ?>
<?php endif; ?>
<?php if (count($this->lists) > 0): ?>
<?php if (!empty($this->lists)): ?>
<strong><?=$this->transEsc('Saved in')?>:</strong>
<?php $i = 0;
foreach ($this->lists as $current): ?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment