From: Jakub Narebski Date: Mon, 2 Aug 2010 20:21:47 +0000 (+0200) Subject: gitweb: Fix typo in run() subroutine X-Git-Tag: v1.7.3-rc0~100 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0b45010e76ef2114a530d81da626871de23f467f;p=git.git gitweb: Fix typo in run() subroutine Run $post_dispatch_hook->() not $pre_dispatch_hook->() after each request. Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index e0e953264..8b0276727 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1125,7 +1125,7 @@ sub run { run_request(); - $pre_dispatch_hook->() + $post_dispatch_hook->() if $post_dispatch_hook; last REQUEST if ($is_last_request->());