pull/216/head
parent
7bda14f7a8
commit
fd18df21cf
102
common.php
102
common.php
|
@ -13,7 +13,7 @@ $Base64Env = [
|
||||||
//'downloadencrypt',
|
//'downloadencrypt',
|
||||||
//'function_name', // used in heroku.
|
//'function_name', // used in heroku.
|
||||||
//'hideFunctionalityFile',
|
//'hideFunctionalityFile',
|
||||||
//'language',
|
//'timezone',
|
||||||
//'passfile',
|
//'passfile',
|
||||||
'sitename',
|
'sitename',
|
||||||
//'theme',
|
//'theme',
|
||||||
|
@ -26,7 +26,7 @@ $Base64Env = [
|
||||||
//'usesharepoint',
|
//'usesharepoint',
|
||||||
'sharepointname',
|
'sharepointname',
|
||||||
'shareurl',
|
'shareurl',
|
||||||
//'sharecookie',
|
////'sharecookie',
|
||||||
'shareapiurl',
|
'shareapiurl',
|
||||||
//'siteid',
|
//'siteid',
|
||||||
'public_path',
|
'public_path',
|
||||||
|
@ -41,11 +41,11 @@ $CommonEnv = [
|
||||||
'SecretKey', // used in SCF.
|
'SecretKey', // used in SCF.
|
||||||
'admin',
|
'admin',
|
||||||
'adminloginpage',
|
'adminloginpage',
|
||||||
'background',
|
'background',
|
||||||
'disktag',
|
'disktag',
|
||||||
'function_name', // used in heroku.
|
'function_name', // used in heroku.
|
||||||
'hideFunctionalityFile',
|
'hideFunctionalityFile',
|
||||||
//'language',
|
//'timezone',
|
||||||
'passfile',
|
'passfile',
|
||||||
'sitename',
|
'sitename',
|
||||||
'theme',
|
'theme',
|
||||||
|
@ -62,7 +62,7 @@ $ShowedCommonEnv = [
|
||||||
//'disktag',
|
//'disktag',
|
||||||
//'function_name', // used in heroku.
|
//'function_name', // used in heroku.
|
||||||
'hideFunctionalityFile',
|
'hideFunctionalityFile',
|
||||||
//'language',
|
//'timezone',
|
||||||
'passfile',
|
'passfile',
|
||||||
'sitename',
|
'sitename',
|
||||||
'theme',
|
'theme',
|
||||||
|
@ -81,7 +81,7 @@ $InnerEnv = [
|
||||||
'sharepointname',
|
'sharepointname',
|
||||||
'siteid',
|
'siteid',
|
||||||
'shareurl',
|
'shareurl',
|
||||||
//'sharecookie',
|
////'sharecookie',
|
||||||
'shareapiurl',
|
'shareapiurl',
|
||||||
'public_path',
|
'public_path',
|
||||||
'refresh_token',
|
'refresh_token',
|
||||||
|
@ -101,13 +101,47 @@ $ShowedInnerEnv = [
|
||||||
//'sharepointname',
|
//'sharepointname',
|
||||||
//'siteid',
|
//'siteid',
|
||||||
//'shareurl',
|
//'shareurl',
|
||||||
//'sharecookie',
|
////'sharecookie',
|
||||||
//'shareapiurl',
|
//'shareapiurl',
|
||||||
'public_path',
|
'public_path',
|
||||||
//'refresh_token',
|
//'refresh_token',
|
||||||
//'token_expires',
|
//'token_expires',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
$timezones = array(
|
||||||
|
'-12'=>'Pacific/Kwajalein',
|
||||||
|
'-11'=>'Pacific/Samoa',
|
||||||
|
'-10'=>'Pacific/Honolulu',
|
||||||
|
'-9'=>'America/Anchorage',
|
||||||
|
'-8'=>'America/Los_Angeles',
|
||||||
|
'-7'=>'America/Denver',
|
||||||
|
'-6'=>'America/Mexico_City',
|
||||||
|
'-5'=>'America/New_York',
|
||||||
|
'-4'=>'America/Caracas',
|
||||||
|
'-3.5'=>'America/St_Johns',
|
||||||
|
'-3'=>'America/Argentina/Buenos_Aires',
|
||||||
|
'-2'=>'America/Noronha',
|
||||||
|
'-1'=>'Atlantic/Azores',
|
||||||
|
'0'=>'UTC',
|
||||||
|
'1'=>'Europe/Paris',
|
||||||
|
'2'=>'Europe/Helsinki',
|
||||||
|
'3'=>'Europe/Moscow',
|
||||||
|
'3.5'=>'Asia/Tehran',
|
||||||
|
'4'=>'Asia/Baku',
|
||||||
|
'4.5'=>'Asia/Kabul',
|
||||||
|
'5'=>'Asia/Karachi',
|
||||||
|
'5.5'=>'Asia/Calcutta', //Asia/Colombo
|
||||||
|
'6'=>'Asia/Dhaka',
|
||||||
|
'6.5'=>'Asia/Rangoon',
|
||||||
|
'7'=>'Asia/Bangkok',
|
||||||
|
'8'=>'Asia/Shanghai',
|
||||||
|
'9'=>'Asia/Tokyo',
|
||||||
|
'9.5'=>'Australia/Darwin',
|
||||||
|
'10'=>'Pacific/Guam',
|
||||||
|
'11'=>'Asia/Magadan',
|
||||||
|
'12'=>'Asia/Kamchatka'
|
||||||
|
);
|
||||||
|
|
||||||
function main($path)
|
function main($path)
|
||||||
{
|
{
|
||||||
global $exts;
|
global $exts;
|
||||||
|
@ -130,6 +164,9 @@ function main($path)
|
||||||
'.'lan:'.$constStr['language'];*/
|
'.'lan:'.$constStr['language'];*/
|
||||||
if ($constStr['language']=='') $constStr['language'] = 'en-us';
|
if ($constStr['language']=='') $constStr['language'] = 'en-us';
|
||||||
$_SERVER['language'] = $constStr['language'];
|
$_SERVER['language'] = $constStr['language'];
|
||||||
|
$_SERVER['timezone'] = getConfig('timezone');
|
||||||
|
if (isset($_COOKIE['timezone'])&&$_COOKIE['timezone']!='') $_SERVER['timezone'] = $_COOKIE['timezone'];
|
||||||
|
if ($_SERVER['timezone']=='') $_SERVER['timezone'] = 0;
|
||||||
$_SERVER['PHP_SELF'] = path_format($_SERVER['base_path'] . $path);
|
$_SERVER['PHP_SELF'] = path_format($_SERVER['base_path'] . $path);
|
||||||
|
|
||||||
if (getConfig('admin')=='') return install();
|
if (getConfig('admin')=='') return install();
|
||||||
|
@ -153,7 +190,7 @@ function main($path)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (getConfig('admin')!='')
|
if (getConfig('admin')!='')
|
||||||
if ( (isset($_COOKIE['admin'])&&$_COOKIE['admin']==md5(getConfig('admin'))) || (isset($_POST['password1'])&&$_POST['password1']==getConfig('admin')) ) {
|
if ( isset($_COOKIE['admin'])&&$_COOKIE['admin']==md5(getConfig('admin')) ) {
|
||||||
$_SERVER['admin']=1;
|
$_SERVER['admin']=1;
|
||||||
$_SERVER['needUpdate'] = needUpdate();
|
$_SERVER['needUpdate'] = needUpdate();
|
||||||
} else {
|
} else {
|
||||||
|
@ -308,7 +345,9 @@ function get_access_token($refresh_token)
|
||||||
}
|
}
|
||||||
error_log('Get access token:'.json_encode($ret, JSON_PRETTY_PRINT));
|
error_log('Get access token:'.json_encode($ret, JSON_PRETTY_PRINT));
|
||||||
savecache('access_token', $_SERVER['access_token']);
|
savecache('access_token', $_SERVER['access_token']);
|
||||||
if (getConfig('sharecookie')==''||getConfig('shareapiurl')=='') setConfig([ 'sharecookie' => $_SERVER['sharecookie'], 'shareapiurl' => $_SERVER['api_url'] ]);
|
$tmp = [];
|
||||||
|
$tmp['shareapiurl'] = $_SERVER['api_url'];
|
||||||
|
if (getConfig('shareapiurl')=='') setConfig($tmp);
|
||||||
} else {
|
} else {
|
||||||
$response = curl_request( $_SERVER['oauth_url'] . 'token', 'client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . $refresh_token );
|
$response = curl_request( $_SERVER['oauth_url'] . 'token', 'client_id='. $_SERVER['client_id'] .'&client_secret='. $_SERVER['client_secret'] .'&grant_type=refresh_token&requested_token_use=on_behalf_of&refresh_token=' . $refresh_token );
|
||||||
if ($response['stat']==200) $ret = json_decode($response['body'], true);
|
if ($response['stat']==200) $ret = json_decode($response['body'], true);
|
||||||
|
@ -556,7 +595,7 @@ function comppass($pass)
|
||||||
if ($_POST['password1'] !== '') if (md5($_POST['password1']) === $pass ) {
|
if ($_POST['password1'] !== '') if (md5($_POST['password1']) === $pass ) {
|
||||||
date_default_timezone_set('UTC');
|
date_default_timezone_set('UTC');
|
||||||
$_SERVER['Set-Cookie'] = 'password='.$pass.'; expires='.date(DATE_COOKIE,strtotime('+1hour'));
|
$_SERVER['Set-Cookie'] = 'password='.$pass.'; expires='.date(DATE_COOKIE,strtotime('+1hour'));
|
||||||
date_default_timezone_set(get_timezone($_COOKIE['timezone']));
|
date_default_timezone_set(get_timezone($_SERVER['timezone']));
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
if ($_COOKIE['password'] !== '') if ($_COOKIE['password'] === $pass ) return 3;
|
if ($_COOKIE['password'] !== '') if ($_COOKIE['password'] === $pass ) return 3;
|
||||||
|
@ -613,39 +652,7 @@ function gethiddenpass($path,$passfile)
|
||||||
|
|
||||||
function get_timezone($timezone = '8')
|
function get_timezone($timezone = '8')
|
||||||
{
|
{
|
||||||
$timezones = array(
|
global $timezones;
|
||||||
'-12'=>'Pacific/Kwajalein',
|
|
||||||
'-11'=>'Pacific/Samoa',
|
|
||||||
'-10'=>'Pacific/Honolulu',
|
|
||||||
'-9'=>'America/Anchorage',
|
|
||||||
'-8'=>'America/Los_Angeles',
|
|
||||||
'-7'=>'America/Denver',
|
|
||||||
'-6'=>'America/Mexico_City',
|
|
||||||
'-5'=>'America/New_York',
|
|
||||||
'-4'=>'America/Caracas',
|
|
||||||
'-3.5'=>'America/St_Johns',
|
|
||||||
'-3'=>'America/Argentina/Buenos_Aires',
|
|
||||||
'-2'=>'America/Noronha',
|
|
||||||
'-1'=>'Atlantic/Azores',
|
|
||||||
'0'=>'UTC',
|
|
||||||
'1'=>'Europe/Paris',
|
|
||||||
'2'=>'Europe/Helsinki',
|
|
||||||
'3'=>'Europe/Moscow',
|
|
||||||
'3.5'=>'Asia/Tehran',
|
|
||||||
'4'=>'Asia/Baku',
|
|
||||||
'4.5'=>'Asia/Kabul',
|
|
||||||
'5'=>'Asia/Karachi',
|
|
||||||
'5.5'=>'Asia/Calcutta', //Asia/Colombo
|
|
||||||
'6'=>'Asia/Dhaka',
|
|
||||||
'6.5'=>'Asia/Rangoon',
|
|
||||||
'7'=>'Asia/Bangkok',
|
|
||||||
'8'=>'Asia/Shanghai',
|
|
||||||
'9'=>'Asia/Tokyo',
|
|
||||||
'9.5'=>'Australia/Darwin',
|
|
||||||
'10'=>'Pacific/Guam',
|
|
||||||
'11'=>'Asia/Magadan',
|
|
||||||
'12'=>'Asia/Kamchatka'
|
|
||||||
);
|
|
||||||
if ($timezone=='') $timezone = '8';
|
if ($timezone=='') $timezone = '8';
|
||||||
return $timezones[$timezone];
|
return $timezones[$timezone];
|
||||||
}
|
}
|
||||||
|
@ -1288,7 +1295,7 @@ function render_list($path = '', $files = '')
|
||||||
$p_path=str_replace('&','&',$p_path);
|
$p_path=str_replace('&','&',$p_path);
|
||||||
$pretitle = str_replace('%23','#',$pretitle);
|
$pretitle = str_replace('%23','#',$pretitle);
|
||||||
$statusCode=200;
|
$statusCode=200;
|
||||||
date_default_timezone_set(get_timezone($_COOKIE['timezone']));
|
date_default_timezone_set(get_timezone($_SERVER['timezone']));
|
||||||
@ob_start();
|
@ob_start();
|
||||||
|
|
||||||
$theme = getConfig('theme');
|
$theme = getConfig('theme');
|
||||||
|
@ -1485,6 +1492,7 @@ function EnvOpt($needUpdate = 0)
|
||||||
global $constStr;
|
global $constStr;
|
||||||
global $ShowedCommonEnv;
|
global $ShowedCommonEnv;
|
||||||
global $ShowedInnerEnv;
|
global $ShowedInnerEnv;
|
||||||
|
global $timezones;
|
||||||
asort($ShowedCommonEnv);
|
asort($ShowedCommonEnv);
|
||||||
asort($ShowedInnerEnv);
|
asort($ShowedInnerEnv);
|
||||||
$html = '<title>OneManager '.getconstStr('Setup').'</title>';
|
$html = '<title>OneManager '.getconstStr('Setup').'</title>';
|
||||||
|
@ -1547,15 +1555,15 @@ function EnvOpt($needUpdate = 0)
|
||||||
<td colspan="2">'.getconstStr('PlatformConfig').'</td>
|
<td colspan="2">'.getconstStr('PlatformConfig').'</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
foreach ($ShowedCommonEnv as $key) {
|
foreach ($ShowedCommonEnv as $key) {
|
||||||
if ($key=='language') {
|
if ($key=='timezone') {
|
||||||
$html .= '
|
$html .= '
|
||||||
<tr>
|
<tr>
|
||||||
<td><label>' . $key . '</label></td>
|
<td><label>' . $key . '</label></td>
|
||||||
<td width=100%>
|
<td width=100%>
|
||||||
<select name="' . $key .'">';
|
<select name="' . $key .'">';
|
||||||
foreach ($constStr['languages'] as $key1 => $value1) {
|
foreach (array_keys($timezones) as $zone) {
|
||||||
$html .= '
|
$html .= '
|
||||||
<option value="'.$key1.'" '.($key1==getConfig($key)?'selected="selected"':'').'>'.$value1.'</option>';
|
<option value="'.$zone.'" '.($zone==getConfig($key)?'selected="selected"':'').'>'.$zone.'</option>';
|
||||||
}
|
}
|
||||||
$html .= '
|
$html .= '
|
||||||
</select>
|
</select>
|
||||||
|
|
|
@ -106,7 +106,7 @@ function install()
|
||||||
if ($_GET['install1']) {
|
if ($_GET['install1']) {
|
||||||
if ($_POST['admin']!='') {
|
if ($_POST['admin']!='') {
|
||||||
$tmp['admin'] = $_POST['admin'];
|
$tmp['admin'] = $_POST['admin'];
|
||||||
$tmp['language'] = $_POST['language'];
|
$tmp['timezone'] = $_COOKIE['timezone'];
|
||||||
$APIKey = getConfig('APIKey');
|
$APIKey = getConfig('APIKey');
|
||||||
if ($APIKey=='') {
|
if ($APIKey=='') {
|
||||||
$APIKey = $_POST['APIKey'];
|
$APIKey = $_POST['APIKey'];
|
||||||
|
@ -147,6 +147,12 @@ language:<br>';
|
||||||
<input type="submit" value="'.getconstStr('Submit').'">
|
<input type="submit" value="'.getconstStr('Submit').'">
|
||||||
</form>
|
</form>
|
||||||
<script>
|
<script>
|
||||||
|
var nowtime= new Date();
|
||||||
|
var timezone = 0-nowtime.getTimezoneOffset()/60;
|
||||||
|
var expd = new Date();
|
||||||
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
||||||
|
var expires = "expires="+expd.toGMTString();
|
||||||
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
function changelanguage(str)
|
function changelanguage(str)
|
||||||
{
|
{
|
||||||
document.cookie=\'language=\'+str+\'; path=/\';
|
document.cookie=\'language=\'+str+\'; path=/\';
|
||||||
|
|
|
@ -119,7 +119,8 @@ function install()
|
||||||
if ($_GET['install2']) {
|
if ($_GET['install2']) {
|
||||||
if ($_POST['admin']!='') {
|
if ($_POST['admin']!='') {
|
||||||
$tmp['admin'] = $_POST['admin'];
|
$tmp['admin'] = $_POST['admin'];
|
||||||
$tmp['language'] = $_POST['language'];
|
$tmp['language'] = $_COOKIE['language'];
|
||||||
|
$tmp['timezone'] = $_COOKIE['timezone'];
|
||||||
$response = setConfig($tmp);
|
$response = setConfig($tmp);
|
||||||
if (api_error($response)) {
|
if (api_error($response)) {
|
||||||
$html = api_error_msg($response);
|
$html = api_error_msg($response);
|
||||||
|
@ -149,6 +150,12 @@ function install()
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
|
var nowtime= new Date();
|
||||||
|
var timezone = 0-nowtime.getTimezoneOffset()/60;
|
||||||
|
var expd = new Date();
|
||||||
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
||||||
|
var expires = "expires="+expd.toGMTString();
|
||||||
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
function notnull(t)
|
function notnull(t)
|
||||||
{
|
{
|
||||||
if (t.admin.value==\'\') {
|
if (t.admin.value==\'\') {
|
||||||
|
|
|
@ -141,6 +141,7 @@ function install()
|
||||||
//if ($_POST['admin']!='') {
|
//if ($_POST['admin']!='') {
|
||||||
$tmp['language'] = $_POST['language'];
|
$tmp['language'] = $_POST['language'];
|
||||||
$tmp['Region'] = $_POST['Region'];
|
$tmp['Region'] = $_POST['Region'];
|
||||||
|
$tmp['timezone'] = $_COOKIE['timezone'];
|
||||||
$SecretId = getConfig('SecretId');
|
$SecretId = getConfig('SecretId');
|
||||||
if ($SecretId=='') {
|
if ($SecretId=='') {
|
||||||
$SecretId = $_POST['SecretId'];
|
$SecretId = $_POST['SecretId'];
|
||||||
|
@ -208,6 +209,12 @@ language:<br>';
|
||||||
<input type="submit" value="'.getconstStr('Submit').'">
|
<input type="submit" value="'.getconstStr('Submit').'">
|
||||||
</form>
|
</form>
|
||||||
<script>
|
<script>
|
||||||
|
var nowtime= new Date();
|
||||||
|
var timezone = 0-nowtime.getTimezoneOffset()/60;
|
||||||
|
var expd = new Date();
|
||||||
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
||||||
|
var expires = "expires="+expd.toGMTString();
|
||||||
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
function changelanguage(str)
|
function changelanguage(str)
|
||||||
{
|
{
|
||||||
document.cookie=\'language=\'+str+\'; path=/\';
|
document.cookie=\'language=\'+str+\'; path=/\';
|
||||||
|
|
|
@ -73,5 +73,5 @@ If there is 'index.html' file, program will only show the content of 'index.html
|
||||||
Click 'EditTime' or 'Size', the list will sort by time or size, Click 'File' can resume sort.
|
Click 'EditTime' or 'Size', the list will sort by time or size, Click 'File' can resume sort.
|
||||||
点击“时间”、“大小”,可以排序显示,点“文件”恢复原样。
|
点击“时间”、“大小”,可以排序显示,点“文件”恢复原样。
|
||||||
|
|
||||||
QQ Group: 943919989
|
QQ Group: 943919989 (请看完上面的中英双语再加群,谢谢!)
|
||||||
Telegram Group: https://t.me/joinchat/I_RVc0bqxuxlT-d0cO7ozw
|
Telegram Group: https://t.me/joinchat/I_RVc0bqxuxlT-d0cO7ozw
|
||||||
|
|
|
@ -803,7 +803,7 @@
|
||||||
expd.setTime(expd.getTime()+(2*60*60*1000));
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
||||||
var expires = "expires="+expd.toGMTString();
|
var expires = "expires="+expd.toGMTString();
|
||||||
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
if (timezone!='8') {
|
if (timezone!=<?php echo $_SERVER['timezone']; ?>) {
|
||||||
alert('Your timezone is '+timezone+', reload local timezone.');
|
alert('Your timezone is '+timezone+', reload local timezone.');
|
||||||
location.href=location.protocol + "//" + location.host + "<?php echo path_format($_SERVER['base_path'] . '/' . $path );?>" ;
|
location.href=location.protocol + "//" + location.host + "<?php echo path_format($_SERVER['base_path'] . '/' . $path );?>" ;
|
||||||
}
|
}
|
||||||
|
|
|
@ -813,7 +813,7 @@ echo '</script>';
|
||||||
expd.setTime(expd.getTime()+(2*60*60*1000));
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
||||||
var expires = "expires="+expd.toGMTString();
|
var expires = "expires="+expd.toGMTString();
|
||||||
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
if (timezone!='8') {
|
if (timezone!=<?php echo $_SERVER['timezone']; ?>) {
|
||||||
alert('Your timezone is '+timezone+', reload local timezone.');
|
alert('Your timezone is '+timezone+', reload local timezone.');
|
||||||
location.href=location.protocol + "//" + location.host + "<?php echo path_format($_SERVER['base_path'] . '/' . $path );?>" ;
|
location.href=location.protocol + "//" + location.host + "<?php echo path_format($_SERVER['base_path'] . '/' . $path );?>" ;
|
||||||
}
|
}
|
||||||
|
|
|
@ -813,7 +813,7 @@ echo '</script>';
|
||||||
expd.setTime(expd.getTime()+(2*60*60*1000));
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
||||||
var expires = "expires="+expd.toGMTString();
|
var expires = "expires="+expd.toGMTString();
|
||||||
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
if (timezone!='8') {
|
if (timezone!=<?php echo $_SERVER['timezone']; ?>) {
|
||||||
alert('Your timezone is '+timezone+', reload local timezone.');
|
alert('Your timezone is '+timezone+', reload local timezone.');
|
||||||
location.href=location.protocol + "//" + location.host + "<?php echo path_format($_SERVER['base_path'] . '/' . $path );?>" ;
|
location.href=location.protocol + "//" + location.host + "<?php echo path_format($_SERVER['base_path'] . '/' . $path );?>" ;
|
||||||
}
|
}
|
||||||
|
|
|
@ -814,7 +814,7 @@ echo '</script>';
|
||||||
expd.setTime(expd.getTime()+(2*60*60*1000));
|
expd.setTime(expd.getTime()+(2*60*60*1000));
|
||||||
var expires = "expires="+expd.toGMTString();
|
var expires = "expires="+expd.toGMTString();
|
||||||
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
document.cookie="timezone="+timezone+"; path=/; "+expires;
|
||||||
if (timezone!='8') {
|
if (timezone!=<?php echo $_SERVER['timezone']; ?>) {
|
||||||
alert('Your timezone is '+timezone+', reload local timezone.');
|
alert('Your timezone is '+timezone+', reload local timezone.');
|
||||||
location.href=location.protocol + "//" + location.host + "<?php echo path_format($_SERVER['base_path'] . '/' . $path );?>" ;
|
location.href=location.protocol + "//" + location.host + "<?php echo path_format($_SERVER['base_path'] . '/' . $path );?>" ;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue