mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 00:24:07 -08:00
Merge remote-tracking branch 'origin/develop'
This commit is contained in:
commit
04ff472428
|
@ -65,18 +65,27 @@ class SettingsController extends Controller
|
||||||
$start_settings['db_error'] = $e->getMessage();
|
$start_settings['db_error'] = $e->getMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
$protocol = array_key_exists('HTTPS', $_SERVER) && ('on' == $_SERVER['HTTPS']) ? 'https://' : 'http://';
|
if (array_key_exists("HTTP_X_FORWARDED_PROTO", $_SERVER)) {
|
||||||
|
$protocol = $_SERVER["HTTP_X_FORWARDED_PROTO"] . "://";
|
||||||
|
} elseif (array_key_exists('HTTPS', $_SERVER) && ('on' == $_SERVER['HTTPS'])) {
|
||||||
|
$protocol = "https://";
|
||||||
|
} else {
|
||||||
|
$protocol = "http://";
|
||||||
|
}
|
||||||
|
|
||||||
$host = array_key_exists('SERVER_NAME', $_SERVER) ? $_SERVER['SERVER_NAME'] : null;
|
if (array_key_exists("HTTP_X_FORWARDED_HOST", $_SERVER)) {
|
||||||
$port = array_key_exists('SERVER_PORT', $_SERVER) ? $_SERVER['SERVER_PORT'] : null;
|
$host = $_SERVER["HTTP_X_FORWARDED_HOST"];
|
||||||
if (('http://' === $protocol && '80' != $port) || ('https://' === $protocol && '443' != $port)) {
|
} else {
|
||||||
$host .= ':'.$port;
|
$host = array_key_exists('SERVER_NAME', $_SERVER) ? $_SERVER['SERVER_NAME'] : null;
|
||||||
|
$port = array_key_exists('SERVER_PORT', $_SERVER) ? $_SERVER['SERVER_PORT'] : null;
|
||||||
|
if (('http://' === $protocol && '80' != $port) || ('https://' === $protocol && '443' != $port)) {
|
||||||
|
$host .= ':'.$port;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$pageURL = $protocol.$host.$_SERVER['REQUEST_URI'];
|
$pageURL = $protocol.$host.$_SERVER['REQUEST_URI'];
|
||||||
|
|
||||||
$start_settings['url_valid'] = (url('/').'/setup' === $pageURL);
|
$start_settings['url_config'] = url('/').'/setup';
|
||||||
|
$start_settings['url_valid'] = ($start_settings['url_config'] === $pageURL);
|
||||||
$start_settings['url_config'] = url('/');
|
|
||||||
$start_settings['real_url'] = $pageURL;
|
$start_settings['real_url'] = $pageURL;
|
||||||
$start_settings['php_version_min'] = true;
|
$start_settings['php_version_min'] = true;
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ class Depreciation extends SnipeModel
|
||||||
// Declare the rules for the form validation
|
// Declare the rules for the form validation
|
||||||
protected $rules = [
|
protected $rules = [
|
||||||
'name' => 'required|min:3|max:255|unique:depreciations,name',
|
'name' => 'required|min:3|max:255|unique:depreciations,name',
|
||||||
'months' => 'required|max:3600|integer',
|
'months' => 'required|max:3600|integer|gt:0',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue