projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8497421
)
gitweb: Fix typo in run() subroutine
author
Jakub Narebski
<jnareb@gmail.com>
Mon, 2 Aug 2010 20:21:47 +0000
(22:21 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 2 Aug 2010 22:01:14 +0000
(15:01 -0700)
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>
gitweb/gitweb.perl
patch
|
blob
|
history
diff --git
a/gitweb/gitweb.perl
b/gitweb/gitweb.perl
index e0e95326481e1db3bb6df5c4ce68c56270731a9f..8b0276727146d6fbd9123b6bbe8b5f0631f823b1 100755
(executable)
--- a/
gitweb/gitweb.perl
+++ b/
gitweb/gitweb.perl
@@
-1125,7
+1125,7
@@
sub run {
run_request();
- $p
re
_dispatch_hook->()
+ $p
ost
_dispatch_hook->()
if $post_dispatch_hook;
last REQUEST if ($is_last_request->());