diff --git a/Source/Source.API.php b/Source/Source.API.php index fe5274e..f4bfea8 100644 --- a/Source/Source.API.php +++ b/Source/Source.API.php @@ -934,7 +934,7 @@ foreach( $t_bugs_deleted as $t_bug_id ) { plugin_history_log( $t_bug_id, 'changeset_removed', - $t_vcs->show_changeset( $this->repo, $this ), + $t_repo->name . ' ' . $t_vcs->show_changeset( $this->repo, $this ), '', $t_user_id, 'Source' ); } } @@ -957,7 +957,7 @@ foreach( $t_bugs_added as $t_bug_id ) { plugin_history_log( $t_bug_id, 'changeset_attached', - $t_vcs->show_changeset( $this->repo, $this ), + $t_repo->name . ' ' . $t_vcs->show_changeset( $this->repo, $this ), '', $t_user_id, 'Source' ); } } diff --git a/Source/Source.php b/Source/Source.php index ab03af5..4b21b2d 100644 --- a/Source/Source.php +++ b/Source/Source.php @@ -10,7 +10,7 @@ * with the Mantis bug tracker software. */ class SourcePlugin extends MantisPlugin { - static $framework_version = '0.16'; + static $framework_version = '0.16.1'; static $cache = array(); function register() {