Quote:
To fix this, basically, edit admin/Dbsql/Home.pm and on line 1197 change: Code:
my $code = eval $GLOBALS->{$template_set}->{$key};Code:
to:
Code:
my $code = eval "package Dbsql; $GLOBALS->{$template_set}->{$key}";
and it should work as expected.
It still doesn't work and generates a "cannot compile" in home.pm line 1151 (which in my editor is the same line for the replacement code above)
easy does it