aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorMaZderMind2015-02-28 19:12:27 +0100
committerMaZderMind2015-02-28 19:12:27 +0100
commit663a234bb19cd9db56072af3b4c866150f05f0db (patch)
treee1cf5653f327705fbe47b6fc406109cf044c50ec /index.php
parent28a263a689cdf17fd6ebcac2c89c4f81946b9cea (diff)
room selection handling rewrite
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index a5c365d..e3157f4 100644
--- a/index.php
+++ b/index.php
@@ -14,7 +14,7 @@ else if(preg_match('@^([^/]+)$@', $route, $m))
{
$_GET = array(
'room' => $m[1],
- 'selection' => 'hd',
+ 'selection' => '',
'language' => 'native',
);
include('pages/room.php');
@@ -24,7 +24,7 @@ else if(preg_match('@^([^/]+)/translated$@', $route, $m))
{
$_GET = array(
'room' => $m[1],
- 'selection' => 'hd',
+ 'selection' => '',
'language' => 'translated',
);
include('pages/room.php');