git-svn-id: http://www.observium.org/svn/observer/trunk@2548 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2011-09-22 18:18:15 +00:00
parent 5872ccac1b
commit 00c8aeae5a
4 changed files with 13 additions and 12 deletions
+7 -7
View File
@@ -81,16 +81,16 @@ foreach($segments as $pos => $segment) {
}
}
foreach($_POST as $name => $value)
foreach($_GET as $name => $value)
{
# if ($value == "" || !isset($value))
# {
# } else {
$vars[$name] = $value;
# }
$vars[$name] = $value;
}
foreach($_POST as $name => $value)
{
$vars[$name] = $value;
}
#print_r($vars);
if(strstr($_SERVER['REQUEST_URI'], 'widescreen=yes')) { $_SESSION['widescreen'] = 1; }
if(strstr($_SERVER['REQUEST_URI'], 'widescreen=no')) { unset($_SESSION['widescreen']); }