Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3b20a69

Browse files
committedFeb 22, 2012
Fix #13941: Missing newlines in Word export
1 parent 125af4e commit 3b20a69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎print_all_bug_page_word.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -377,23 +377,23 @@
377377
<?php echo $t_lang_description ?>:
378378
</td>
379379
<td class="print" colspan="5">
380-
<?php echo string_display_line_links( $t_bug->description ) ?>
380+
<?php echo string_display_links( $t_bug->description ) ?>
381381
</td>
382382
</tr>
383383
<tr class="print">
384384
<td class="print-category">
385385
<?php echo $t_lang_steps_to_reproduce ?>:
386386
</td>
387387
<td class="print" colspan="5">
388-
<?php echo string_display_line_links( $t_bug->steps_to_reproduce ) ?>
388+
<?php echo string_display_links( $t_bug->steps_to_reproduce ) ?>
389389
</td>
390390
</tr>
391391
<tr class="print">
392392
<td class="print-category">
393393
<?php echo $t_lang_additional_information ?>:
394394
</td>
395395
<td class="print" colspan="5">
396-
<?php echo string_display_line_links( $t_bug->additional_information ) ?>
396+
<?php echo string_display_links( $t_bug->additional_information ) ?>
397397
</td>
398398
</tr>
399399
<?php

0 commit comments

Comments
 (0)
Please sign in to comment.