better handling of custom field columns in tables (#1419)

This commit is contained in:
Kevin Papst
2020-01-29 15:18:10 +01:00
committed by GitHub
parent 836a530b86
commit f2c6d8aee1
6 changed files with 22 additions and 12 deletions

View File

@@ -175,8 +175,10 @@ class DoctorController extends AbstractController
$result = [];
if ($iterator->valid()) {
try {
$result = iterator_to_array($iterator);
} catch (\Exception $ex) {
$result = ['ATTENTION: Failed reading log file'];
}
if (!is_writable($logfile)) {