all: added stream and player to feedback view

This commit is contained in:
dedeibel 2017-12-29 19:12:57 +01:00 committed by MaZderMind
parent 55dbd74766
commit f42ab70029
2 changed files with 3 additions and 2 deletions

View file

@ -52,6 +52,7 @@ class Feedback
public function isLoggedIn()
{
return true;
return
isset($_SERVER['PHP_AUTH_USER']) &&
$_SERVER['PHP_AUTH_USER'] == $this->getConference()->get('FEEDBACK.USERNAME') &&

View file

@ -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',