bug #2936482 [core] Fix SSL detection.

This commit is contained in:
Michal Čihař
2010-01-22 21:52:30 +00:00
parent 94007b6705
commit 608ad9b147
2 changed files with 2 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- rfe #1379201 [core] Add option to configure session_save_path. - rfe #1379201 [core] Add option to configure session_save_path.
+ [interface] Provide links to documentation in highlighted SQL. + [interface] Provide links to documentation in highlighted SQL.
+ [interface] It is now possible to bookmark most pages in JS capable browser. + [interface] It is now possible to bookmark most pages in JS capable browser.
- bug #2936482 [core] Fix SSL detection.
3.3.0.0 (not yet released) 3.3.0.0 (not yet released)
+ rfe #2308632 [edit] Use hex for (var)binary fields, + rfe #2308632 [edit] Use hex for (var)binary fields,

View File

@@ -792,7 +792,7 @@ class PMA_Config
*/ */
public function isHttps() public function isHttps()
{ {
static $is_https = false; static $is_https = null;
if (null !== $is_https) { if (null !== $is_https) {
return $is_https; return $is_https;