What's new
Xen Factory

Register today to become a member! Once signed in, you'll be able to start purchasing our products, ask questions, request support and suggest new ideas!

  • This area is dedicated to the support of our xF1 add-ons. For xF2, please use the dedicated area: HERE.
  • We are aware that a no permission error was shown when you tried to purchase in the last 2 days, this is now fixed.

Bug Fixed _postSaveAfterTransaction()

Ethic

New Member
Running Extended Moderation I receive the following error & users are unable to post in threads:

Pg04poZ.png


I have updated to the latest version with no resolution:

xujFu0u.png


I have contacted Jaxel, author of the other plugin mentioned (discord integration) and he advised: "This is an error with XFA. XenForo itself defines _postSaveAfterTransaction as a protected function. If XFA is changing it to a public function, then they are the ones not following spec."

Please advise.
 

Clement

Freaky Coder
Staff member
Yes indeed it's a bug.

Edit the file library/XFA/ExtendedModeration/DataWriter/DiscussionMessage/Post.php.
Search for :
PHP:
function _postSaveAfterTransaction()

Replace by:
PHP:
public function _postSaveAfterTransaction()
 
Top