[Rt-commit] rt branch, 3.8-trunk, updated. rt-3.8.6-112-gf8f83e1

Alex M Vandiver alexmv at bestpractical.com
Tue Dec 1 15:49:18 EST 2009


The branch, 3.8-trunk has been updated
       via  f8f83e1b8c5352db00162407a1bdc1e16329cba0 (commit)
      from  e8319c5b728dceb934c05f6712cbb57752b550c7 (commit)

Summary of changes:
 lib/RT/Interface/Web.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

- Log -----------------------------------------------------------------
commit f8f83e1b8c5352db00162407a1bdc1e16329cba0
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Dec 1 15:48:45 2009 -0500

    Remove a double negative to clarify logic slightly

diff --git a/lib/RT/Interface/Web.pm b/lib/RT/Interface/Web.pm
index 08d28ec..ddb3967 100755
--- a/lib/RT/Interface/Web.pm
+++ b/lib/RT/Interface/Web.pm
@@ -194,7 +194,7 @@ sub HandleRequest {
 
     MaybeShowNoAuthPage($ARGS);
 
-    AttemptExternalAuth($ARGS) unless ( ! RT->Config->Get('WebExternalAuthContinuous') && _UserLoggedIn() );
+    AttemptExternalAuth($ARGS) if RT->Config->Get('WebExternalAuthContinuous') or not _UserLoggedIn();
 
     _ForceLogout() unless _UserLoggedIn();
 

-----------------------------------------------------------------------


More information about the Rt-commit mailing list