1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-26 09:26:37 +02:00

gitweb: Fix typo in run() subroutine

Run $post_dispatch_hook->() not $pre_dispatch_hook->() after each
request.

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jakub Narebski 2010-08-02 22:21:47 +02:00 committed by Junio C Hamano
parent 8497421715
commit 0b45010e76

View File

@ -1125,7 +1125,7 @@ sub run {
run_request();
$pre_dispatch_hook->()
$post_dispatch_hook->()
if $post_dispatch_hook;
last REQUEST if ($is_last_request->());