Hello,
Testing 1.2.0rc1, I tried to add the "description" column in excel exported columns.
This creates the following error :
"Fatal error: Cannot use object of type BugData as array in .../www/mantis/excel_xml_export.php on line 86"
Can someone help me out ?
I need this export field. Summary field is not enough.
Should I report a bug ?
Majun
Excel export, description field
Moderators: Developer, Contributor
Re: Excel export, description field
Sorry for the duplicate post, I thought I had a problem with my account for the first post I was submitting.
Re: Excel export, description field
Nobody has a single solution ?
Should I submit a bug to put that under control for future release ?
Should I submit a bug to put that under control for future release ?
-
robert.weber
- Posts: 1
- Joined: 08 Oct 2009, 20:40
Re: Excel export, description field
I had this same error. I fixed it by changing line 97 from:
echo $t_function( $t_row[$t_column] );
to:
echo $t_function( $t_row->$t_column );
echo $t_function( $t_row[$t_column] );
to:
echo $t_function( $t_row->$t_column );