Can't call method "LanguageHandle"

Upgraded from 3.6.4 to 3.8.7

After the upgrade some of my users are getting the below message:
Can’t call method “LanguageHandle” on unblessed reference at
/opt/rt3/share/html/l line 49.

we only use english and have set
Set(@LexiconLanguages, qw(en));
in RT_SiteConfig but no luck ?? any ideas why we are getting this

Regards;
Roy

Hello Raed,

I’ve seen it recently too, but havn’t dived into fixing, yet.On Mon, Mar 22, 2010 at 7:09 PM, Raed El-Hames rfh@vialtus.com wrote:

Upgraded from 3.6.4 to 3.8.7

After the upgrade some of my users are getting the below message:
Can’t call method “LanguageHandle” on unblessed reference at
/opt/rt3/share/html/l line 49.

we only use english and have set
Set(@LexiconLanguages, qw(en));
in RT_SiteConfig but no luck ?? any ideas why we are getting this

Regards;
Roy


The rt-users Archives

Community help: http://wiki.bestpractical.com
Commercial support: sales@bestpractical.com

2010 RT Training Sessions!
San Francisco, CA, USA - Feb 22 & 23
Dublin, Ireland - Mar 15 & 16
Boston, MA, USA - April 5 & 6
Washington DC, USA - Oct 25 & 26

Discover RT’s hidden secrets with RT Essentials from O’Reilly Media.
Buy a copy at http://rtbook.bestpractical.com

Best regards, Ruslan.

Hi Rus;

I don’t mind debugging/fixing myself but not sure where / how

I changed sub LanguageHandle in RT::CurrentUser to:

sub LanguageHandle {
my $self = shift;

push @_, 'en';
$self->{'LangHandle'} = RT::I18N->get_handle(@_);
return $self->{'LangHandle'};

}

but still getting the same phantom error, which on refresh (once or
twice) seems to disappear

my next step is to edit html/l itself , unless you have any suggestions??

Regards;
Roy

Ruslan Zakirov wrote: