View Single Post
11-03-13, 10:52 AM   #8
jaliborc
A Chromatic Dragonspawn
 
jaliborc's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2007
Posts: 196
Originally Posted by Dridzt View Post
That is mentioned in the threads I linked earlier and is also not a generic fix.
It only works for frames that contain no secure elements (eg. WorldMapFrame) it will fail on any frame that does (Friends, Raid etc etc)

The best generic "fix" at the moment is selectively hiding the error popup as Oscarucb has suggested.
Code:
UIParent:HookScript("OnEvent", function(s, e, a1, a2) if e:find("ACTION_FORBIDDEN") and ((a1 or "")..(a2 or "")):find("IsDisabledByParentalControls") then StaticPopup_Hide(e) end; end)
Pretty nasty fix. Oh well, I guess it's the best of a bad situation. As long as it works... Oh Blizzard...
  Reply With Quote