View Issue Details

IDProjectCategoryView StatusLast Update
0012162mantisbtemailpublic2011-08-05 02:36
Reporterwatergad Assigned Toatrol  
PrioritylowSeveritytextReproducibilityhave not tried
Status closedResolutionduplicate 
Product Version1.2.1 
Summary0012162: Space missing after username in "format history"
Description

Space missing after username in "format history":
$t_message .= utf8_str_pad( date( $t_normal_date_format, $t_raw_history_item['date'] ), 17 ) . utf8_str_pad( $t_raw_history_item['username'], 15 ) . utf8_str_pad( $t_localized_item['note'], 25 ) . utf8_str_pad( $t_localized_item['change'], 20 ) . "\n";

'username' and 'note' are glued, there's no any space between them.

Steps To Reproduce

Tweaked to
$t_message .= utf8_str_pad( date( $t_normal_date_format, $t_raw_history_item['date'] ), 17 ) . utf8_str_pad( $t_raw_history_item['username'], 15 ) . ": " . utf8_str_pad( $t_localized_item['note'], 23 ) . utf8_str_pad( $t_localized_item['change'], 20 ) . "\n";

TagsNo tags attached.

Relationships

duplicate of 0006095 new Minotr layout problem with emails and realnames 

Activities

watergad

watergad

2010-07-13 03:58

reporter   ~0026067

Code from core/email_api.php, email_format_bug_message function

atrol

atrol

2010-12-27 15:39

developer   ~0027736

I think this is a duplicate of 0006095
Do you agree?

watergad

watergad

2010-12-27 15:54

reporter   ~0027739

Yes I think so