aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorMaZderMind2014-12-27 20:56:20 +0100
committerMaZderMind2014-12-27 20:56:20 +0100
commitda15fd33e4b6d4bb4089c42591de3574d383f874 (patch)
treec3d11dac579fa87837fea90355ef0709c8a5f958 /index.php
parentab0a2cfbf2b4be1d87376052a02ef2e67557bf0b (diff)
relive gui
Diffstat (limited to '')
-rw-r--r--index.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/index.php b/index.php
index d554a94..ed8faf5 100644
--- a/index.php
+++ b/index.php
@@ -74,6 +74,14 @@ else if(preg_match('@^feedback$@', $route, $m))
include('pages/feedback.php');
}
+else if(preg_match('@^relive/([0-9]+)$@', $route, $m))
+{
+ $_GET = array(
+ 'id' => $m[1],
+ );
+ include('pages/relive-player.php');
+}
+
else if(preg_match('@^relive$@', $route, $m))
{
include('pages/relive.php');