zingaburga / XThreads-MyBB-Plugin

A powerful MyBB plugin which provides a flexible environment for administrators to perform various modifications.
http://mybbhacks.zingaburga.com/showthread.php?tid=288
25 stars 6 forks source link

Fatal error: Uncaught Error: Attempt to modify property "cache" #31

Closed Eldenroot closed 2 years ago

Eldenroot commented 2 years ago

With specific settings in Google SEO plugin there is this fatal error during filtering:

Fatal error: Uncaught Error: Attempt to modify property "cache" on null in [/path/to/my/board]/inc/xthreads/xt_forumdhooks.php:626

How to fix: Solution is to move the global $templates; declaration on line 609 of inc/xthreads/xt_forumdhooks.php up to line 597. So that $templates is always available to line 626 below, not just when the Google SEO conditions test false.

Thx @lairdshaw for this report :)

@zingaburga

zingaburga commented 2 years ago

Thanks for reporting!