View Issue Details

IDProjectCategoryView StatusLast Update
0024738mantisbtcustom fieldspublic2018-09-18 14:56
Reporterskill-vincentl Assigned Todregad  
PrioritynormalSeveritytweakReproducibilityalways
Status closedResolutionwon't fix 
Product Version2.17.0 
Summary0024738: Update files : <b>/core/summary_api.php</b> and <b>/manage_proj_page.php</b>
Description

Add bold tag HTML on summary master / make this files :
<b># /core/summary_api.php</b>
<b>old ligne 744 :</b> summary_helper_print_row( string_display_line($t_name), $t_bugs_open, $t_bugs_resolved, $t_bugs_closed, $t_bugs_total, $t_bugs_ratio[0], $t_bugs_ratio[1]);
<b>new ligne 744 :</b> summary_helper_print_row( string_display_line( (($p_level===0)?"<b>":NULL).$t_name.(($p_level===0)?"</b>":NULL) ), $t_bugs_open, $t_bugs_resolved, $t_bugs_closed, $t_bugs_total, $t_bugs_ratio[0], $t_bugs_ratio[1]);

<b># /manage_proj_page.php</b>
<b>old ligne 155 :</b> <a href="manage_proj_edit_page.php?project_id=<?php echo $t_project['id'] ?>"><?php echo str_repeat( "» ", $t_level ) . string_display($t_project['name']) ;?></a>
<b>new ligne 155 :</b> <a href="manage_proj_edit_page.php?project_id=<?php echo $t_project['id'] ?>"><?php echo str_repeat( "» ", $t_level ) . string_display( (($t_level===0)? "<b>":NULL).$t_project['name']. (($t_level===0)? "</b>":NULL) ) ;?></a>

TagsNo tags attached.

Activities

dregad

dregad

2018-09-06 19:34

developer   ~0060615

@skill-vincentl this is not the right way to submit patches.

The issue should describe the reasons for making the change (e.g. bug fix, new feature, etc).
Please open a pull request on GitHub with your patch, or if you can't do that, a unified diff.

Thanks in advance.

skill-vincentl

skill-vincentl

2018-09-07 03:32

reporter   ~0060619

ok, i will do the necessary.
thank you.