mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
all: added stream and player to feedback view
This commit is contained in:
parent
55dbd74766
commit
f42ab70029
2 changed files with 3 additions and 2 deletions
|
@ -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') &&
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue