Skip to content

Commit d6fc8aa

Browse files
committedFeb 22, 2012
Fix #13941: Missing newlines in Word export
1 parent 26db7ae commit d6fc8aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

Diff for: ‎print_all_bug_page_word.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -416,23 +416,23 @@
416416
<?php echo sprintf( lang_get( 'label' ), $t_lang_description ) ?>
417417
</td>
418418
<td class="print" colspan="5">
419-
<?php echo string_display_line_links( $t_bug->description ) ?>
419+
<?php echo string_display_links( $t_bug->description ) ?>
420420
</td>
421421
</tr>
422422
<tr class="print">
423423
<td class="print-category">
424424
<?php echo sprintf( lang_get( 'label' ), $t_lang_steps_to_reproduce ) ?>
425425
</td>
426426
<td class="print" colspan="5">
427-
<?php echo string_display_line_links( $t_bug->steps_to_reproduce ) ?>
427+
<?php echo string_display_links( $t_bug->steps_to_reproduce ) ?>
428428
</td>
429429
</tr>
430430
<tr class="print">
431431
<td class="print-category">
432432
<?php echo sprintf( lang_get( 'label' ), $t_lang_additional_information ) ?>
433433
</td>
434434
<td class="print" colspan="5">
435-
<?php echo string_display_line_links( $t_bug->additional_information ) ?>
435+
<?php echo string_display_links( $t_bug->additional_information ) ?>
436436
</td>
437437
</tr>
438438
<?php

0 commit comments

Comments
 (0)
Please sign in to comment.