summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Mas <lolando@debian.org>2014-10-16 06:54:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-10-16 20:12:34 (GMT)
commit4750f4b962b4f09b03fcdde86684cf60c6f6e46a (patch)
tree1177e5b037e5dffb04fa250c6d865b54cf1866d2
parent76f8611a5fb7e81c1bada0fb190d573a66fc03f6 (diff)
downloadgit-4750f4b962b4f09b03fcdde86684cf60c6f6e46a.zip
git-4750f4b962b4f09b03fcdde86684cf60c6f6e46a.tar.gz
git-4750f4b962b4f09b03fcdde86684cf60c6f6e46a.tar.bz2
gitweb: use start_form, not startform that was removed in CGI.pm 4.04
CGI.pm 4.04 removed the startform method, which had previously been deprecated in favour of start_form. Changes file for CGI.pm says: 4.04 2014-09-04 [ REMOVED / DEPRECATIONS ] - startform and endform methods removed (previously deprecated, you should be using the start_form and end_form methods) Signed-off-by: Roland Mas <lolando@debian.org> Reviewed-by: Jakub Narębski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xgitweb/gitweb.perl4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index a9f57d6..ccf7516 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -4100,7 +4100,7 @@ sub print_search_form {
if ($use_pathinfo) {
$action .= "/".esc_url($project);
}
- print $cgi->startform(-method => "get", -action => $action) .
+ print $cgi->start_form(-method => "get", -action => $action) .
"<div class=\"search\">\n" .
(!$use_pathinfo &&
$cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) . "\n") .
@@ -5510,7 +5510,7 @@ sub git_project_search_form {
}
print "<div class=\"projsearch\">\n";
- print $cgi->startform(-method => 'get', -action => $my_uri) .
+ print $cgi->start_form(-method => 'get', -action => $my_uri) .
$cgi->hidden(-name => 'a', -value => 'project_list') . "\n";
print $cgi->hidden(-name => 'pf', -value => $project_filter). "\n"
if (defined $project_filter);