Skip to content

Commit

Permalink
Reformat code + whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Feb 20, 2015
1 parent 6f36e8e commit 827fc64
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions core/classes/IssueTagTimelineEvent.class.php
Expand Up @@ -55,9 +55,16 @@ public function html() {
$t_string = $this->tag ? lang_get( 'timeline_issue_tagged' ) : lang_get( 'timeline_issue_untagged' );

$t_html = $this->html_start();
$t_html .= '<div class="action">' . sprintf( $t_string, user_get_name( $this->user_id ), string_get_bug_view_link( $this->issue_id ), $this->tag_name ) . '</div>';
$t_html .= '<div class="action">'
. sprintf(
$t_string,
user_get_name( $this->user_id ),
string_get_bug_view_link( $this->issue_id ),
$this->tag_name
)
. '</div>';
$t_html .= $this->html_end();

return $t_html;
}
}
}

0 comments on commit 827fc64

Please sign in to comment.