diff options
author | MaZderMind | 2018-01-24 23:51:18 +0100 |
---|---|---|
committer | MaZderMind | 2018-01-24 23:51:18 +0100 |
commit | 7f066f2e9c382fe8c12a2a607c4576e1ee38f87c (patch) | |
tree | f36dc1e17fcded998f35562976b47ec47b3d7609 /view | |
parent | ceaad129176e3ff5dd47b884c024569f474eec5b (diff) | |
parent | f36367abd9b1537b3b01463347d01b186844fbef (diff) |
Merge branch '34c3-cherries'
Diffstat (limited to '')
-rw-r--r-- | view/feedback-read.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/feedback-read.php b/view/feedback-read.php index 3c29dbd..ba7a985 100644 --- a/view/feedback-read.php +++ b/view/feedback-read.php @@ -9,9 +9,9 @@ if(!$feedback->isLoggedIn()) $from = isset($_POST['from']) ? strtotime($_POST['from']) : strtotime('2000-01-01'); $to = isset($_POST['to']) ? strtotime($_POST['to']) : time() + 24*60*60; -$cols = isset($_POST['col']) ? $_POST['col'] : array('reported', 'issuetext'); +$cols = isset($_POST['col']) ? $_POST['col'] : array('reported', 'stream', 'player', 'issuetext'); -$allcols = array('reported', 'datetime', 'net', 'os', 'player', 'stream', 'ipproto_v4', 'ipproto_v6', 'provider', 'issues', 'issuetext'); +$allcols = array('reported', 'datetime', 'net', 'os', 'stream', 'player', 'ipproto_v4', 'ipproto_v6', 'provider', 'issues', 'issuetext'); echo $tpl->render(array( 'page' => 'feedback-read', |