Excel export, description field

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
Majun
Posts: 4
Joined: 23 Sep 2009, 06:09

Excel export, description field

Post by Majun »

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
Majun
Posts: 4
Joined: 23 Sep 2009, 06:09

Re: Excel export, description field

Post by Majun »

Sorry for the duplicate post, I thought I had a problem with my account for the first post I was submitting.
Majun
Posts: 4
Joined: 23 Sep 2009, 06:09

Re: Excel export, description field

Post by Majun »

Nobody has a single solution ?
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

Post by robert.weber »

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 );
Post Reply