Application log: don't crash if logData === null

refs #7060
This commit is contained in:
Alexander Klimov 2014-09-03 12:44:23 +02:00
parent 1e06c20dcb
commit 3b8fcb80a8

View File

@ -5,6 +5,7 @@
</div> </div>
<div class="content"> <div class="content">
<?php if ($this->logData !== null): ?>
<table class="action"> <table class="action">
<tbody> <tbody>
<?php foreach ($this->logData as $value): ?> <?php foreach ($this->logData as $value): ?>
@ -21,4 +22,5 @@
<?php endforeach; ?> <?php endforeach; ?>
</tbody> </tbody>
</table> </table>
<?php endif; ?>
</div> </div>