It works on 4.1.10.
There was an extra space in the query by the TABLE_PREFIX. It's been corrected in the zip or you can just manauly remove it from your version.
Line 119:
Code:
FROM " . TABLE_PREFIX . "thread_global_stickies AS f inner join " . TABLE_PREFIX . " thread AS t on t.threadid = f.threadid
Should be:
Code:
FROM " . TABLE_PREFIX . "thread_global_stickies AS f inner join " . TABLE_PREFIX . "thread AS t on t.threadid = f.threadid