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 99a02f12 authored by Demian Katz's avatar Demian Katz
Browse files

Merge pull request #383 from finc/pullrequest_finesbugfix

* fixed 'Notice: Undefined index' fines-template for non record-rows
parents 333a09c0 3bd9232a
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