The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

Skip to content
Snippets Groups Projects
Commit 3bd9232a authored by André Lahmann's avatar André Lahmann
Browse files

* fixed 'Notice: Undefined index' fines-template for non record-rows

parent dcc8f5fb
No related merge requests found
......@@ -28,7 +28,7 @@
<td>
<? if (empty($record['title'])): ?>
<?=$this->transEsc('not_applicable')?>
<? elseif (!is_object($record['driver'])): ?>
<? elseif (!isset($record['driver']) || !is_object($record['driver'])): ?>
<?=$this->escapeHtml(trim($record['title'], '/:'))?>
<? else: ?>
<a href="<?=$this->recordLink()->getUrl($record['driver'])?>"><?=$this->escapeHtml(trim($record['title'], '/:'))?></a>
......
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