diff --git a/adminer/db.inc.php b/adminer/db.inc.php index fb065d6b..101d4911 100644 --- a/adminer/db.inc.php +++ b/adminer/db.inc.php @@ -176,12 +176,13 @@ if ($adminer->homepage()) { $rows = get_rows("SHOW EVENTS"); if ($rows) { echo "\n"; - echo "\n"; + echo "\n"; foreach ($rows as $row) { echo ""; - echo '
" . lang('Name') . "" . lang('Schedule') . "" . lang('Start') . "" . lang('End') . "
" . lang('Name') . "" . lang('Schedule') . "" . lang('Start') . "" . lang('End') . "
' . h($row["Name"]) . ""; + echo "" . h($row["Name"]); echo "" . ($row["Execute at"] ? lang('At given time') . "" . $row["Execute at"] : lang('Every') . " " . $row["Interval value"] . " " . $row["Interval field"] . "$row[Starts]"); echo "$row[Ends]"; + echo '' . lang('Alter') . ''; } echo "
\n"; $event_scheduler = $connection->result("SELECT @@event_scheduler");