/** * Clears out the currently loaded locale settings. */ public function Unload() { // If we're unloading, don't save first if ($this->LocaleContainer instanceof Gdn_Configuration) { $this->LocaleContainer->AutoSave(FALSE); } $this->LocaleContainer = new Gdn_Configuration(); $this->LocaleContainer->Splitting(FALSE); $this->LocaleContainer->Caching(FALSE); }