Ensure locale is set when using Basic Auth also.

This commit is contained in:
Andrew McMillan 2006-12-10 22:18:08 +13:00
parent 9904914d5a
commit be12d48c62

View File

@ -140,6 +140,9 @@ class BasicAuthSession {
$this->GetRoles();
$this->logged_in = true;
if ( function_exists("awl_set_locale") && isset($this->locale) && $this->locale != "" ) {
awl_set_locale($this->locale);
}
}