View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0007497 | mantisbt | other | public | 2006-10-03 23:59 | 2007-10-24 02:27 |
| Reporter | tomotomo | Assigned To | vboctor | ||
| Priority | normal | Severity | text | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Fixed in Version | 1.1.0rc2 | ||||
| Summary | 0007497: Summary page is little of Garble | ||||
| Description | In Summary page, A code not correct is used at Japanese environment. Summary_api.php Line 536 | ||||
| Tags | patch | ||||
| Attached Files | summary_api.php.diff (699 bytes)
Index: /home/sogabe/public_html/mantis/core/summary_api.php
===================================================================
--- /home/sogabe/public_html/mantis/core/summary_api.php (revision 116)
+++ /home/sogabe/public_html/mantis/core/summary_api.php (working copy)
@@ -678,7 +678,7 @@
}
foreach ( $p_projects as $t_project ) {
- $t_name = str_repeat( "� ", $p_level ) . project_get_name( $t_project );
+ $t_name = str_repeat( "» ", $p_level ) . project_get_name( $t_project );
$t_pdata = isset( $p_cache[ $t_project ] ) ? $p_cache[ $t_project ]
: array( 'open' => 0, 'resolved' => 0, 'closed' => 0 );
| ||||