View Issue Details

IDProjectCategoryView StatusLast Update
0014017mantisbtcsvpublic2014-09-23 18:05
Reportertomozaki Assigned Todregad  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version1.2.9 
Target Version1.2.10Fixed in Version1.2.10 
Summary0014017: Exporting Descriptions, Additional Information, etc. fails.
Description

Configure MantisBT to export Description to EXCEL.
With 1.2.5, Descriptions are exported correctly.
However, after updating to 1.2.9, all Description columns of the generated EXCEL file became empty.

To export correctly, I modified as follows.

excel_xml_export.php: line 90

echo $t_function( $t_bug->$t_column );

This line shall be modified as follows.

echo $t_function( $t_bug );

TagsNo tags attached.

Relationships

related to 0015721 closedgrangeway Functionality to consider porting to master-2.0.x 

Activities

dregad

dregad

2012-03-07 20:05

developer   ~0031407

I must have made a mistake while merging the branch with the cross-project relationships fixes. I'll have a look. Thanks for reporting the issue

grangeway

grangeway

2013-04-05 17:57

reporter   ~0036291

Marking as 'acknowledged' not resolved/closed to track that change gets ported to master-2.0.x branch

Related Changesets

MantisBT: master fca6d033

2012-03-08 22:53

dregad


Details Diff
Code cleanup in excel_xml_export.php

Removed the specific logic to handle the extended text fields, which is
no longer required as the BugData API will automatically retrieve them
if needed. This is a leftover from the conversion from old, array-style
access to bug data (see 2d5e01443e2715096f2eed41b6bbca3da60d2487).

Furthermore, the call to bug_get() was redundant, since the result set
from filter_get_bug_rows() already contains BugData objects.

Fixes 0014017

Also removes a useless line of code accidentally left in there by commit
0542805d6357153fa84ad791406887ecef13cdff.
Affected Issues
0014017
mod - excel_xml_export.php Diff File

MantisBT: master-1.2.x a3eec4b7

2012-03-08 22:53

dregad


Details Diff
Code cleanup in excel_xml_export.php

Removed the specific logic to handle the extended text fields, which is
no longer required as the BugData API will automatically retrieve them
if needed. This is a leftover from the conversion from old, array-style
access to bug data (see 18ad379c92db070115b8921bd51024b5bb5dd230).

Furthermore, the call to bug_get() was redundant, since the result set
from filter_get_bug_rows() already contains BugData objects.

Fixes 0014017

Also removes a useless line of code accidentally left in there by commit
b5450f3d7eedf5669affe77865560cbf053bbead.
Affected Issues
0014017
mod - excel_xml_export.php Diff File