Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
66e69867
Commit
66e69867
authored
May 29, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes issue #457: incorrect HTTPS detection.
parent
f3cfc60d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Connection.php
framework/yii/db/Connection.php
+1
-1
Request.php
framework/yii/web/Request.php
+2
-2
No files found.
framework/yii/db/Connection.php
View file @
66e69867
...
@@ -251,7 +251,7 @@ class Connection extends Component
...
@@ -251,7 +251,7 @@ class Connection extends Component
*/
*/
private
$_schema
;
private
$_schema
;
/**
/**
* Returns a value indicating whether the DB connection is established.
* Returns a value indicating whether the DB connection is established.
* @return boolean whether the DB connection is established
* @return boolean whether the DB connection is established
...
...
framework/yii/web/Request.php
View file @
66e69867
...
@@ -533,8 +533,8 @@ class Request extends \yii\base\Request
...
@@ -533,8 +533,8 @@ class Request extends \yii\base\Request
*/
*/
public
function
getIsSecureConnection
()
public
function
getIsSecureConnection
()
{
{
return
isset
(
$_SERVER
[
'HTTPS'
])
&&
strcasecmp
(
$_SERVER
[
'HTTPS'
],
'off'
)
return
isset
(
$_SERVER
[
'HTTPS'
])
&&
(
$_SERVER
[
'HTTPS'
]
===
'on'
||
$_SERVER
[
'HTTPS'
]
==
1
)
||
isset
(
$_SERVER
[
'HTTP_X_FORWARDED_PROTO'
])
&&
$_SERVER
[
'HTTP_X_FORWARDED_PROTO'
]
===
'https'
;
||
isset
(
$_SERVER
[
'HTTP_X_FORWARDED_PROTO'
])
&&
$_SERVER
[
'HTTP_X_FORWARDED_PROTO'
]
===
'https'
;
}
}
/**
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment