aboutsummaryrefslogtreecommitdiffstats
path: root/gitweb/gitweb.perl
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2008-12-07 10:36:36 +0100
committerJunio C Hamano <gitster@pobox.com>2008-12-07 02:52:37 -0800
commitbcc6a833032e0830195c1de1b834006a1d0156fe (patch)
tree13280146e44173b0b01a0d11b0021d4460d09d07 /gitweb/gitweb.perl
parenthttp.c: use 'git_config_string' to get 'curl_http_proxy' (diff)
downloadgit-bcc6a833032e0830195c1de1b834006a1d0156fe.tar.gz
git-bcc6a833032e0830195c1de1b834006a1d0156fe.zip
gitweb: Make project specific override for 'grep' feature work
The 'grep' feature was marked in the comments as having project specific config, but it lacked 'sub' key required for it to work. Kind-of-Noticed-by: Matt Kraai <kraai@ftbfs.org> Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb/gitweb.perl')
-rwxr-xr-xgitweb/gitweb.perl1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index eae5084c66..ced7bb740f 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -232,6 +232,7 @@ our %feature = (
# $feature{'grep'}{'override'} = 1;
# and in project config gitweb.grep = 0|1;
'grep' => {
+ 'sub' => \&feature_grep,
'override' => 0,
'default' => [1]},