Skip to content

Commit

Permalink
Item14237: Merge commit '99294e8f73d5c82ccdeb22ca294eb0a63e3450dc' in…
Browse files Browse the repository at this point in the history
…to Item14237

* commit '99294e8f73d5c82ccdeb22ca294eb0a63e3450dc':
  Item13897: Fixed use of undefined users attribute
  • Loading branch information
vrurg committed Nov 28, 2016
2 parents dd9b500 + 99294e8 commit 616ad79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/Foswiki/App.pm
Expand Up @@ -431,7 +431,7 @@ sub DEMOLISH {
# Make sure not to do this if incomplete initialization happened or we're
# doomed for "(in cleanup)" messages.
$this->users->loginManager->complete
if $this->has_users && $this->users->has_loginManager;
if $this->users && $this->users->has_loginManager;
}

=begin TML
Expand Down

0 comments on commit 616ad79

Please sign in to comment.