diff options
author | Robert Haas | 2009-07-13 05:06:46 +0000 |
---|---|---|
committer | Robert Haas | 2009-07-13 05:06:46 +0000 |
commit | 994ecfe577d0bee4ee8e93792a09fb624d8b53d5 (patch) | |
tree | 26787bcb97846fbb516963e3209630a573c98fd4 | |
parent | 71efbf6f830a5d19545f01e93e7c374915e7b47b (diff) |
Bug fix: Correctly set last_updater for initial patch comment.
-rw-r--r-- | perl-lib/PgCommitFest/Patch.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-lib/PgCommitFest/Patch.pm b/perl-lib/PgCommitFest/Patch.pm index 4a769c8..53fb7e3 100644 --- a/perl-lib/PgCommitFest/Patch.pm +++ b/perl-lib/PgCommitFest/Patch.pm @@ -153,6 +153,7 @@ EOM 'message_id' => $message_id, 'content' => 'Initial version.', 'creator' => $aa->{'userid'}, + 'last_updater' => $aa->{'userid'}, }); } $r->db->commit; |