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 26db7ae commit d6fc8aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions print_all_bug_page_word.php
Expand Up @@ -416,23 +416,23 @@
<?php echo sprintf( lang_get( 'label' ), $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 sprintf( lang_get( 'label' ), $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 sprintf( lang_get( 'label' ), $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 d6fc8aa

Please sign in to comment.