diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-01-28 20:34:11 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-01-28 20:34:11 -0500 |
commit | b11ddb88e608a6dd5e95f95bff2c506674c4fad8 (patch) | |
tree | 81aa8d755ddd7052d228d4a08141e5187ec43307 /IkiWiki/Rcs/tla.pm | |
parent | ad6d22f237294422bb1d76231f60f069fed8b32e (diff) | |
download | ikiwiki-b11ddb88e608a6dd5e95f95bff2c506674c4fad8.tar ikiwiki-b11ddb88e608a6dd5e95f95bff2c506674c4fad8.tar.gz |
add an id field to the rcs_recentchanges return structure
There was an undocumented field named "rev", I think "id" is a better name,
and nothing uses it yet.
Diffstat (limited to 'IkiWiki/Rcs/tla.pm')
-rw-r--r-- | IkiWiki/Rcs/tla.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Rcs/tla.pm b/IkiWiki/Rcs/tla.pm index 1dbc006c1..5275500c3 100644 --- a/IkiWiki/Rcs/tla.pm +++ b/IkiWiki/Rcs/tla.pm @@ -145,7 +145,8 @@ sub rcs_recentchanges ($) { diffurl => $diffurl, } if length $file; } - push @ret, { rev => $change, + push @ret, { + id => $change, user => $user, committype => $committype, when => $when, |