mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-22 00:33:59 +01:00
[base_xenforo2forum] should override [base_xenforoforum], not vice versa.
This commit is contained in:
parent
4ec21b145f
commit
ada3f5ed2a
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ class BaseXenForo2ForumAdapter(BaseXenForoForumAdapter):
|
|||
@classmethod
|
||||
def getConfigSections(cls):
|
||||
"Only needs to be overriden if has additional ini sections."
|
||||
return ['base_xenforo2forum'] + super(BaseXenForo2ForumAdapter, cls).getConfigSections()
|
||||
return super(BaseXenForo2ForumAdapter, cls).getConfigSections() + ['base_xenforo2forum']
|
||||
|
||||
def performLogin(self):
|
||||
params = {}
|
||||
|
|
|
|||
Loading…
Reference in a new issue