mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Updating env(HTTPS); to more accurately reflect the PHP $_SERVER docs. Fixes #6524
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8246 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
d6a12ce5f1
commit
7ca85109cb
2 changed files with 19 additions and 2 deletions
|
@ -362,8 +362,8 @@ if (!function_exists('array_combine')) {
|
|||
*/
|
||||
function env($key) {
|
||||
if ($key == 'HTTPS') {
|
||||
if (isset($_SERVER) && !empty($_SERVER)) {
|
||||
return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on');
|
||||
if (isset($_SERVER['HTTPS'])) {
|
||||
return (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off');
|
||||
}
|
||||
return (strpos(env('SCRIPT_URI'), 'https://') === 0);
|
||||
}
|
||||
|
|
|
@ -94,11 +94,28 @@ class BasicsTest extends CakeTestCase {
|
|||
|
||||
$_SERVER = $_ENV = array();
|
||||
|
||||
$this->assertFalse(env('HTTPS'));
|
||||
|
||||
$_SERVER['HTTPS'] = 'on';
|
||||
$this->assertTrue(env('HTTPS'));
|
||||
|
||||
$_SERVER['HTTPS'] = '1';
|
||||
$this->assertTrue(env('HTTPS'));
|
||||
|
||||
$_SERVER['HTTPS'] = 'I am not empty';
|
||||
$this->assertTrue(env('HTTPS'));
|
||||
|
||||
$_SERVER['HTTPS'] = 1;
|
||||
$this->assertTrue(env('HTTPS'));
|
||||
|
||||
$_SERVER['HTTPS'] = 'off';
|
||||
$this->assertFalse(env('HTTPS'));
|
||||
|
||||
$_SERVER['HTTPS'] = false;
|
||||
$this->assertFalse(env('HTTPS'));
|
||||
|
||||
$_SERVER['HTTPS'] = '';
|
||||
$this->assertFalse(env('HTTPS'));
|
||||
|
||||
$_SERVER = array();
|
||||
|
||||
|
|
Loading…
Reference in a new issue