diff options
author | Jakub Narebski <jnareb@gmail.com> | 2008-12-07 10:36:36 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-12-07 02:52:37 -0800 |
commit | bcc6a833032e0830195c1de1b834006a1d0156fe (patch) | |
tree | 13280146e44173b0b01a0d11b0021d4460d09d07 /gitweb | |
parent | e4a80ecf40c9651741def7c4f0b2ca56b42af1a8 (diff) | |
download | git-bcc6a833032e0830195c1de1b834006a1d0156fe.tar.gz git-bcc6a833032e0830195c1de1b834006a1d0156fe.tar.xz |
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')
-rwxr-xr-x | gitweb/gitweb.perl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index eae5084c6..ced7bb740 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]}, |