diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-06-08 10:41:30 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-06-10 15:38:21 +0200 |
commit | edf62eb41a338319488eb0b71134da2d38d0a7bd (patch) | |
tree | 2ca0242c64e0e66cf325ad815a225e1595797975 /settings/templates/admin.php | |
parent | 000269cec81c80b9a7a1e98d46b3d062fd0a9996 (diff) | |
download | nextcloud-server-edf62eb41a338319488eb0b71134da2d38d0a7bd.tar.gz nextcloud-server-edf62eb41a338319488eb0b71134da2d38d0a7bd.zip |
Add user ID to log entries in admin page
Diffstat (limited to 'settings/templates/admin.php')
-rw-r--r-- | settings/templates/admin.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 0cdefe10083..b5c5b2510b6 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -519,6 +519,7 @@ if ($_['cronErrors']) { p($entry->time); }?> </td> + <td><?php isset($entry->user) ? p($entry->user) : p('--') ?></td> </tr> <?php endforeach;?> </table> |