Notice fixes from jacobsantos. fixes #7255

git-svn-id: https://develop.svn.wordpress.org/trunk@8266 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2008-07-07 14:21:47 +00:00
parent e97cb4f857
commit 8887dcc0a2
2 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -2256,7 +2256,7 @@ function validate_file( $file, $allowed_files = '' ) {
* @return bool True if SSL, false if not used.
*/
function is_ssl() {
return ( 'on' == strtolower($_SERVER['HTTPS']) ) ? true : false;
return ( isset($_SERVER['HTTPS']) && 'on' == strtolower($_SERVER['HTTPS']) ) ? true : false;
}
/**