diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-22 12:22:58 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-22 12:22:58 +0000 |
| commit | 2f2d48e5f59012db0e9dfcf2fa780ccfb2d24b65 (patch) | |
| tree | 6432d25a2ca61a56199befe80bdaa3024754c307 /phpBB/login.php | |
| parent | 7f42f5ac10019e9d6b9b7a8c37c8e0e1bda94497 (diff) | |
| download | forums-2f2d48e5f59012db0e9dfcf2fa780ccfb2d24b65.tar forums-2f2d48e5f59012db0e9dfcf2fa780ccfb2d24b65.tar.gz forums-2f2d48e5f59012db0e9dfcf2fa780ccfb2d24b65.tar.bz2 forums-2f2d48e5f59012db0e9dfcf2fa780ccfb2d24b65.tar.xz forums-2f2d48e5f59012db0e9dfcf2fa780ccfb2d24b65.zip | |
webstar on MacOS X seems to suffer the same refresh issue as IIS CGI, fixed
git-svn-id: file:///svn/phpbb/trunk@2394 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/login.php')
| -rw-r--r-- | phpBB/login.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/login.php b/phpBB/login.php index c8d7bfa65b..743c53c14f 100644 --- a/phpBB/login.php +++ b/phpBB/login.php @@ -47,7 +47,7 @@ if( isset($HTTP_POST_VARS['login']) || isset($HTTP_GET_VARS['login']) || isset($ // since this doesn't exist for ISAPI mode and therefore the // normal Location redirector is used in preference // - $header_location = ( @preg_match("/Microsoft/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: "; + $header_location = ( @preg_match("/Microsoft|WebSTAR/", getenv("SERVER_SOFTWARE")) ) ? "Refresh: 0; URL=" : "Location: "; if( ( isset($HTTP_POST_VARS['login']) || isset($HTTP_GET_VARS['login']) ) && !$userdata['session_logged_in'] ) { |
