Skip to content

Commit

Permalink
Misc line breaks and phpdoc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
vboctor committed Jul 6, 2015
1 parent 25ec97f commit 0d5ea13
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion core/history_api.php
Expand Up @@ -185,6 +185,8 @@ function history_count_user_recent_events( $p_duration_in_seconds, $p_user_id =
* @param integer $p_start_time The start time to filter by, or null for all.
* @param integer $p_end_time The end time to filter by, or null for all.
* @param integer $p_max_events The maximum number of events to return or null/0 for all.
* @param integer $p_sort_order The sort order ASC, DESC, or null to use default ordering
* as per config.
* @return array
*/
function history_get_raw_events_array( $p_bug_id, $p_user_id = null, $p_start_time = null, $p_end_time = null, $p_max_events = null, $p_sort_order = null ) {
Expand Down Expand Up @@ -327,7 +329,8 @@ function history_get_raw_events_array( $p_bug_id, $p_user_id = null, $p_start_ti
}
}

# if history is not scoped to a single bug, then include the bug id in the returned array for each element.
# if history is not scoped to a single bug, then include the bug id in the returned array
# for each element.
if ( $p_bug_id === null ) {
$t_raw_history[$j]['bug_id'] = $v_bug_id;
}
Expand Down
3 changes: 2 additions & 1 deletion core/timeline_inc.php
Expand Up @@ -46,7 +46,8 @@

timeline_print_events( $t_events );

# We will compromise accuracy of more link and showing exactly N without clicking more in favor or reducing load.
# We will compromise accuracy of more link and showing exactly N without clicking more in favor or
# reducing load.
if( !$f_all ) {
echo '<p>' . $t_prev_link = ' [ <a href="my_view_page.php?days=' . $f_days . '&amp;all=1">' . lang_get( 'timeline_more' ) . '</a> ]</p>';
}
Expand Down

0 comments on commit 0d5ea13

Please sign in to comment.