Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Phantom User
is there anyway of turning it off?
0
This discussion has been closed.
Comments
$PreferencesForm->AddPreference("MenuOptions", "Phantom", "Phantom", 0);
from near the end of the extension, and cut this bit near the start out:
if ($rows["Preferences"]) { $settings = unserialize($rows["Preferences"]); if (array_key_exists("Phantom", $settings)) $phantom = ForceBool($settings["Phantom"], 0); else $phantom = false; } else { $phantom = false; }
and replace it with just
$phantom = false;
thanx