summaryrefslogtreecommitdiff
path: root/includes/pages/admin_log.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pages/admin_log.php')
-rw-r--r--includes/pages/admin_log.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/includes/pages/admin_log.php b/includes/pages/admin_log.php
index 70da62fd..356a6402 100644
--- a/includes/pages/admin_log.php
+++ b/includes/pages/admin_log.php
@@ -1,10 +1,10 @@
<?php
+
function admin_log_title() {
return _("Log");
}
function admin_log() {
-
if (isset($_POST['keyword'])) {
$filter = $_POST['keyword'];
$log_entries_source = LogEntries_filter($_POST['keyword']);
@@ -12,24 +12,24 @@ function admin_log() {
$filter = "";
$log_entries_source = LogEntries();
}
-
- $log_entries = array();
+
+ $log_entries = [];
foreach ($log_entries_source as $log_entry) {
$log_entry['date'] = date("d.m.Y H:i", $log_entry['timestamp']);
$log_entries[] = $log_entry;
}
-
- return page_with_title(admin_log_title(), array(
+
+ return page_with_title(admin_log_title(), [
msg(),
- form(array(
- form_text('keyword', _("Search"), $filter),
- form_submit(_("Search"), "Go")
- )),
- table(array(
+ form([
+ form_text('keyword', _("Search"), $filter),
+ form_submit(_("Search"), "Go")
+ ]),
+ table([
'date' => "Time",
'nick' => "Angel",
- 'message' => "Log Entry"
- ), $log_entries)
- ));
+ 'message' => "Log Entry"
+ ], $log_entries)
+ ]);
}
?>