Skip to content

Commit

Permalink
Fix error for excel export page
Browse files Browse the repository at this point in the history
Fix an error introduced by commit f233869, that makes
excel_xml_export.php throw an error when exporting issues.

Issue #20424

Signed-off-by: Damien Regad <dregad@mantisbt.org>
  • Loading branch information
cproensa authored and dregad committed Aug 12, 2016
1 parent 519f38f commit 84f43e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion excel_xml_export.php
Expand Up @@ -134,7 +134,7 @@
# convert and cache data
$t_rows = filter_cache_result( $t_read_rows, $t_bug_id_array );
user_cache_array_rows( $t_unique_user_ids );
columns_plugin_cache_issue_data( $t_result, $t_columns );
columns_plugin_cache_issue_data( $t_rows, $t_columns );

# Clear arrays that are not needed
unset( $t_read_rows );
Expand Down

0 comments on commit 84f43e0

Please sign in to comment.