Changeset 3208 in subversion
- Timestamp:
- Jan 17, 2010 7:30:41 AM (3 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r3198 r3208 2 2 =========================== 3 3 4 - Fix 'force_https' to specified port when URL contains a port number (#1486411) 4 5 - Fix to-text converting of HTML entities inside b/strong/th/hX tags (#1486422) 5 6 - Bug in spellchecker suggestions when server charset != UTF8 (#1486406) -
trunk/roundcubemail/index.php
r3063 r3208 68 68 $https_port = is_bool($force_https) ? 443 : $force_https; 69 69 if (!rcube_https_check($https_port)) { 70 header('Location: https://' . $_SERVER['HTTP_HOST'] . ($https_port != 443 ? ':' . $https_port : '') . $_SERVER['REQUEST_URI']); 70 $host = preg_replace('/:[0-9]+$/', '', $_SERVER['HTTP_HOST']); 71 $host .= ($https_port != 443 ? ':' . $https_port : ''); 72 header('Location: https://' . $host . $_SERVER['REQUEST_URI']); 71 73 exit; 72 74 }
Note: See TracChangeset
for help on using the changeset viewer.
