diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-17 19:23:00 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-17 19:23:00 -0400 |
commit | e8a11957dfa55e7eb544553ecf9bc0a0bc872c7f (patch) | |
tree | b69b16a359e93b447beeaaf9ef9ba0f213ea8e6a | |
parent | afd3126e555b01ea9e3b5d9f3b7625b2fdca1d12 (diff) |
fix web commit determination
-rw-r--r-- | IkiWiki/Rcs/git.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Rcs/git.pm b/IkiWiki/Rcs/git.pm index aa7657b5c..ab6a12c48 100644 --- a/IkiWiki/Rcs/git.pm +++ b/IkiWiki/Rcs/git.pm @@ -391,7 +391,7 @@ sub rcs_recentchanges ($) { #{{{ } my $user=$ci->{'author_username'}; - my $web_commit = ($user=~s/\@web//); + my $web_commit = ($ci->{'author'} =~ /\@web>/); # compatability code for old web commit messages if (! $web_commit && |