c7d4e72341
This also moves session_start in lib/base.php down a bit because we need OC::$SERVERROOT to get the config settings. Signed-off-by: Florian Pritz <bluewind@xinu.at>
6 lines
172 B
PHP
6 lines
172 B
PHP
<?php
|
|
// FIXME: this should start a secure session if forcessl is enabled
|
|
// see lib/base.php for an example
|
|
session_start();
|
|
$_SESSION['timezone'] = $_GET['time'];
|
|
?>
|