View Issue Details

IDProjectCategoryView StatusLast Update
0007317mantisbtotherpublic2006-12-08 02:39
Reportermariogamboa Assigned Tothraxisp  
PrioritynormalSeverityfeatureReproducibilityN/A
Status closedResolutionfixed 
Product Version1.0.5 
Fixed in Version1.1.0a2 
Summary0007317: Issue History
Description

Is posible in the issue history only see the public note add for support team and the private note don't register in issue history

TagsNo tags attached.

Activities

vboctor

vboctor

2006-07-29 02:10

manager   ~0013166

We need to implement a more powerful issue history that takes into consideration access levels and renaming of values like version names, etc. However, for now you can use the patch below:

In core/bugnote_api.php, function bugnote_add():

Replace:

log new bug

history_log_event_special( $p_bug_id, BUGNOTE_ADDED, bugnote_format_id( $t_bugnote_id ) );

With:

if ( !$p_private ) {

log new bug

history_log_event_special( $p_bug_id, BUGNOTE_ADDED, bugnote_format_id( $t_bugnote_id ) );
}

mariogamboa

mariogamboa

2006-07-29 09:55

reporter   ~0013168

With this patch the notes private doesn't log and show in history for the reporter users?

thraxisp

thraxisp

2006-09-24 19:27

reporter   ~0013479

fixed in CVS
core/history_api.php -> 1.35