Skip to content

Commit

Permalink
Fix #13941: Missing newlines in Word export
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Feb 22, 2012
1 parent 125af4e commit 3b20a69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions print_all_bug_page_word.php
Expand Up @@ -377,23 +377,23 @@
<?php echo $t_lang_description ?>:
</td>
<td class="print" colspan="5">
<?php echo string_display_line_links( $t_bug->description ) ?>
<?php echo string_display_links( $t_bug->description ) ?>
</td>
</tr>
<tr class="print">
<td class="print-category">
<?php echo $t_lang_steps_to_reproduce ?>:
</td>
<td class="print" colspan="5">
<?php echo string_display_line_links( $t_bug->steps_to_reproduce ) ?>
<?php echo string_display_links( $t_bug->steps_to_reproduce ) ?>
</td>
</tr>
<tr class="print">
<td class="print-category">
<?php echo $t_lang_additional_information ?>:
</td>
<td class="print" colspan="5">
<?php echo string_display_line_links( $t_bug->additional_information ) ?>
<?php echo string_display_links( $t_bug->additional_information ) ?>
</td>
</tr>
<?php
Expand Down

0 comments on commit 3b20a69

Please sign in to comment.