Skip to content

Commit

Permalink
Item14237: Fixed a problem with loosing class mapping information bet…
Browse files Browse the repository at this point in the history
…ween initialization stages
  • Loading branch information
vrurg committed May 23, 2018
1 parent d9d8275 commit 136b32e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/lib/Foswiki/App.pm
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,12 @@ sub BUILD {
$this->clear_extMgr;

$this->extMgr->initialize;

# The following line is a way to preserve information about extension
# class mapping across cfg re-initialization. This is basically all we
# need of the extension manager at this stage: to answer the question
# what class will implement configuration object.
$this->extMgr->registeredClasses;
}

$this->enterContext( appStage => 'postConfig' );
Expand Down

0 comments on commit 136b32e

Please sign in to comment.