correctly check for ssl enabled

This commit is contained in:
Evan Prodromou 2010-01-10 00:19:46 -08:00
parent 304f3b4f18
commit 06ed0bc791
1 changed files with 3 additions and 2 deletions

View File

@ -260,8 +260,9 @@ class RegisterAction extends Action
// Re-init language env in case it changed (not yet, but soon)
common_init_language();
if (common_config('ssl', 'sometimes') && // mixed environment
common_config('site', 'server') != common_config('site', 'sslserver')) {
if (common_config('site', 'ssl') == 'sometimes' && // mixed environment
0 != strcasecmp(common_config('site', 'server'), common_config('site', 'sslserver'))) {
$url = common_local_url('all',
array('nickname' =>
$user->nickname));