[Cpan-forum-commit] rev 110 - trunk/lib/CPAN
svn at pti.co.il
svn at pti.co.il
Tue Feb 8 21:08:36 IST 2005
Author: gabor
Date: 2005-02-08 21:08:36 +0200 (Tue, 08 Feb 2005)
New Revision: 110
Modified:
trunk/lib/CPAN/Forum.pm
Log:
typo in the name of a method
Modified: trunk/lib/CPAN/Forum.pm
===================================================================
--- trunk/lib/CPAN/Forum.pm 2005-02-07 20:24:12 UTC (rev 109)
+++ trunk/lib/CPAN/Forum.pm 2005-02-08 19:08:36 UTC (rev 110)
@@ -1198,7 +1198,7 @@
}
-sub module_serach_form {
+sub module_search_form {
my ($self, $errors) = @_;
my $t = $self->load_tmpl("module_search_form.tmpl");
$t->param($_=>1) foreach @$errors;
@@ -1261,7 +1261,7 @@
# process search later
} else {
# TODO should be called whent the module_search is ready
- return $self->module_serach_form();
+ return $self->module_search_form();
}
$self->log->debug("B: new_group: '$new_group' and id: '$new_group_id'");
}
@@ -1843,7 +1843,7 @@
}
if (not $txt) {
- return $self->module_serach_form(['invalid_search_term']);
+ return $self->module_search_form(['invalid_search_term']);
}
$self->log->debug("group name search term: $txt");
$txt =~ s/::/-/g;
@@ -1858,7 +1858,7 @@
push @group_ids, $group->id;
}
if (not @group_names) {
- return $self->module_serach_form(['no_module_found']);
+ return $self->module_search_form(['no_module_found']);
}
#$self->log->debug("GROUP NAMES: @group_names");
More information about the Cpan-forum-commit
mailing list