foo
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sun, 12 Mar 2006 20:25:06 +0000 (20:25 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sun, 12 Mar 2006 20:25:06 +0000 (20:25 +0000)
ikiwiki

diff --git a/ikiwiki b/ikiwiki
index abeda29c248dba2ad2722740b8149dca478072bb..5ae95e59d71eeb19e104ef48978d5965a137b11b 100755 (executable)
--- a/ikiwiki
+++ b/ikiwiki
@@ -448,7 +448,7 @@ sub rcs_recentchanges ($) { #{{{
                        elsif ($state eq 'body' && /$div/) {
                                my $committype="web";
                                if (defined $message[0] &&
-                                   $message[0]->{line}=~/^web commit by (\w+)(.*)/) {
+                                   $message[0]->{line}=~/^web commit by (\w+):?(.*)/) {
                                        $user="$1";
                                        $message[0]->{line}=$2;
                                }
@@ -457,7 +457,7 @@ sub rcs_recentchanges ($) { #{{{
                                }
                                
                                push @ret, { rev => $rev, user => $user,
-                                       commitype => $commitype,
+                                       commitype => $committype,
                                        when => $when, message => [@message],
                                        pages => [@pages] } if @pages;
                                return @ret if @ret >= $num;