The process_svn_commits.php file, used as post-commit script from subversion,
only parses the first line of the svn changelog looking for an "issue: xxx" or
"bug: #yyy" tag.
Imho it would be a better idea to scan the complete commit msg for such tags.
Diff is:
line 64:
- $commit_msg = array_shift($results);
+ $commit_msg = implode("\n", $results);
line 78:
- $pattern = "/[issue|bug] ?:? ?#?(\d+)/i";
+ $pattern = "/[issue|bug] ?:? ?#?(\d+)/im";
This has the welcome side effect of showing the complete changelog message in
the eventum issue page (the current script only shows the first line of the
changelog message)