diff --git a/Source/SourceIntegration.php b/Source/SourceIntegration.php
index 880102b..648eb8d 100644
--- a/Source/SourceIntegration.php
+++ b/Source/SourceIntegration.php
@@ -61,7 +61,7 @@
- name . ' ( ' . event_signal( 'EVENT_SOURCE_SHOW_CHANGESET', array( $t_repo, $t_changeset ) ) . ' )' ) ?>
+ name . ': ' . event_signal( 'EVENT_SOURCE_SHOW_CHANGESET', array( $t_repo, $t_changeset ) ) ) ?>
timestamp ) ?>
author ) ?>
diff --git a/SourceGithub/SourceGithub.php b/SourceGithub/SourceGithub.php
index bd6ffbf..56d494f 100644
--- a/SourceGithub/SourceGithub.php
+++ b/SourceGithub/SourceGithub.php
@@ -50,9 +50,9 @@
}
$t_ref = substr( $p_changeset->revision, 0, 8 );
- $t_branch = is_blank( $p_changeset->branch ) ? '' : "($p_changeset->branch) ";
+ $t_branch = $p_changeset->branch;
- return "$t_branch$t_ref";
+ return "$t_branch $t_ref";
}
function show_file( $p_event, $p_repo, $p_changeset, $p_file ) {
|