diff options
Diffstat (limited to 'tools/bddb/brlog.php')
-rw-r--r-- | tools/bddb/brlog.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/bddb/brlog.php b/tools/bddb/brlog.php index 6e98c9c4813..fa651ae02dd 100644 --- a/tools/bddb/brlog.php +++ b/tools/bddb/brlog.php @@ -73,6 +73,7 @@ <tr valign=top> <th>logno / edit</th> <th>date</th> +<th>who</th> <th width="70%">details</th> </tr> <?php @@ -82,6 +83,7 @@ echo "<tr>\n"; print_cell("<a href=\"edlog.php?serno=$row[serno]&logno=$row[logno]\">$row[logno]</a>"); print_cell($row['date']); + print_cell($row['who']); print_cell("<pre>" . urldecode($row['details']) . "</pre>"); echo "</tr>\n"; } |