diff --git a/Source/MantisSourcePlugin.class.php b/Source/MantisSourcePlugin.class.php
index 4e5a3b6..ca8ec53 100644
--- a/Source/MantisSourcePlugin.class.php
+++ b/Source/MantisSourcePlugin.class.php
@@ -87,7 +87,7 @@
}
function show_changeset( $p_event, $p_repo, $p_changeset ) {
- return $p_repo->name . ' ' . $p_repo->type . ' ' . $p_changeset->revision;
+ return $p_repo->type . ' ' . $p_changeset->revision;
}
function show_file( $p_event, $p_repo, $p_changeset, $p_file ) {
diff --git a/Source/SourceIntegration.php b/Source/SourceIntegration.php
index ef69e35..c52acff 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 ) ) ) ?>
author ) ?>
timestamp ) ?>
diff --git a/Source/pages/list.php b/Source/pages/list.php
index b4e3111..361dae5 100644
--- a/Source/pages/list.php
+++ b/Source/pages/list.php
@@ -31,13 +31,12 @@
-name ?> |
- |
+name ?> |
+ |
- |
- |
+ |
|
|
@@ -48,8 +47,7 @@
$t_css = helper_alternate_class();
?>
>
-timestamp ?> |
-revision ?> |
+ timestamp ?> |
author ?> |
message ) ?> |
diff --git a/SourceGithub/SourceGithub.php b/SourceGithub/SourceGithub.php
index 523c7b7..7a7e341 100644
--- a/SourceGithub/SourceGithub.php
+++ b/SourceGithub/SourceGithub.php
@@ -51,7 +51,7 @@
$t_ref = substr( $p_changeset->revision, 0, 8 );
$t_branch = $p_changeset->branch;
- return "$p_repo->name $t_ref ($t_branch)";
+ return "$t_ref ($t_branch)";
}
function show_file( $p_event, $p_repo, $p_changeset, $p_file ) {
diff --git a/SourceSFSVN/SourceSFSVN.php b/SourceSFSVN/SourceSFSVN.php
index 2cd465d..c5d7091 100644
--- a/SourceSFSVN/SourceSFSVN.php
+++ b/SourceSFSVN/SourceSFSVN.php
@@ -43,7 +43,7 @@
function show_changeset( $p_event, $p_repo, $p_changeset ) {
if ( 'sfsvn' == $p_repo->type ) {
- return "$p_repo->name ($p_changeset->branch r$p_changeset->revision)";
+ return "$p_changeset->branch r$p_changeset->revision";
}
}
diff --git a/SourceWebSVN/SourceWebSVN.php b/SourceWebSVN/SourceWebSVN.php
index b6caa98..2c1c1f7 100644
--- a/SourceWebSVN/SourceWebSVN.php
+++ b/SourceWebSVN/SourceWebSVN.php
@@ -43,7 +43,7 @@
function show_changeset( $p_event, $p_repo, $p_changeset ) {
if ( 'svn' == $p_repo->type ) {
- return "$p_repo->name ($p_changeset->branch r$p_changeset->revision)";
+ return "$p_changeset->branch r$p_changeset->revision";
}
}
|