• Do not register here on develop.twiki.org, login with your twiki.org account.
• Use View topic Item7848 for generic doc work for TWiki-6.1.1. Use View topic Item7851 for doc work on extensions that are not part of a release. More... Close
• Anything you create or change in standard webs (Main, TWiki, Sandbox etc) will be automatically reverted on every SVN update.
Does this site look broken?. Use the LitterTray web for test cases.

Item6285: TWikiUserMapping logging errors

Item Form Data

AppliesTo: Component: Priority: CurrentState: WaitingFor: TargetRelease ReleasedIn
Engine TWikiUserMappingContrib Low No Action Required   n/a  

Edit Form Data

Summary:
Reported By:
Codebase:
Applies To:
Component:
Priority:
Current State:
Waiting For:
Target Release:
Released In:
 

Detail

TWiki-4.3.1 causes errors to be logged to the webserver's error_log:

view: Use of uninitialized value in string eq at /srv/twiki/lib/TWiki/Users/TWikiUserMapping.pm line 471

The problem is $this->{session}->{user} does not exist on first invocation of TWiki::Users:TWikiUserMapping::userExists()

To correct the problem, simply test if the index exists first:

     # Do this to avoid a password manager lookup
-    return 1 if $cUID eq $this->{session}->{user};
+    return 1 if exists $this->{session}->{user} and $cUID eq $this->{session}->{user}; 

-- TWiki:Main/WadeFitzpatrick - 02 Jul 2009

Thanks Wade. This is a duplicate of Item6375, fixed there.

-- TWiki:Main.PeterThoeny - 2014-10-04

ItemTemplate
Summary TWikiUserMapping logging errors
ReportedBy TWiki:Main.WadeFitzpatrick
Codebase 4.3.1
SVN Range TWiki-5.0.0, Sat, 18 Apr 2009, build 18024
AppliesTo Engine
Component TWikiUserMappingContrib
Priority Low
CurrentState No Action Required
WaitingFor

Checkins

TargetRelease n/a
ReleasedIn

Edit | Attach | Watch | Print version | History: r3 < r2 < r1 | Backlinks | Raw View |  Raw edit | More topic actions
Topic revision: r3 - 2014-10-04 - PeterThoeny
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2023 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback