Added more i18n labels to HttpProxy so that error messages can be internationalized.

Added skeletal documentation for the new RSS modules.
Fixed a bug in Search/Index.pm that was giving a warning during syntax checks.
This commit is contained in:
Colin Kuskie 2006-11-08 04:29:10 +00:00
parent 7532d07507
commit 91ee102c5f
7 changed files with 211 additions and 5 deletions

View file

@ -209,8 +209,8 @@ A reference to an asset object.
sub new {
my $class = shift;
my $asset = shift;
my $self = {_asset=>$asset, _session=>$asset->session, _id=>$asset->getId}, $class;
bless $self;
my $self = {_asset=>$asset, _session=>$asset->session, _id=>$asset->getId};
bless $self, $class;
}