I'm not sure as I haven't checked, but a quick scan of the plugin, and I suspect these lines (appears in multiple locations):
This probably conflicts with XThreads first post handling, but the above code is incorrect, for a number of reasons:
- It's already cached by earlier bits of the code:
- The two calls really should be one, so that it doesn't double query
- It doesn't check for any previously cached variable, effectively adding two queries for nothing most of the time
- It overwrites any previously cached variable (effectively destroying any modification applied to it before)
You can safely delete all 12 instances of the code above in the first code box.