<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body><span class="vcard"><a class="email" href="mailto:philipz85@hotmail.com" title="Yousuf Philips (jay) <philipz85@hotmail.com>"> <span class="fn">Yousuf Philips (jay)</span></a>
</span> changed
          <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - FILESAVE: character formatting applied to fields not preserved when saving as DOC or as DOCX"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=38778">bug 38778</a>
          <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">CC</td>
           <td>
                
           </td>
           <td>philipz85@hotmail.com
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - FILESAVE: character formatting applied to fields not preserved when saving as DOC or as DOCX"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=38778#c16">Comment # 16</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - FILESAVE: character formatting applied to fields not preserved when saving as DOC or as DOCX"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=38778">bug 38778</a>
              from <span class="vcard"><a class="email" href="mailto:philipz85@hotmail.com" title="Yousuf Philips (jay) <philipz85@hotmail.com>"> <span class="fn">Yousuf Philips (jay)</span></a>
</span></b>
        <pre>For DOCX, LO is only adding the <w:highlight> tag to the first run element that
make up a field.

<w:r>
  <w:rPr>
    <w:highlight w:val="yellow" /> <-- this is the highlight
  </w:rPr>
  <w:fldChar w:fldCharType="begin" w:fldLock="true"></w:fldChar>
</w:r>
<w:r> <-- highlight missing from <w:rPr> tag
  <w:instrText>TIME \@"HH:mm:ss"</w:instrText>
</w:r>
<w:r> <-- highlight missing from <w:rPr> tag
  <w:fldChar w:fldCharType="separate" />
</w:r>
<w:r> <-- highlight missing from <w:rPr> tag
  <w:t>14:01:13</w:t>
</w:r>
<w:r> <-- highlight missing from <w:rPr> tag
  <w:fldChar w:fldCharType="end" />
</w:r>

how its done in MSO 2010

<w:r w:rsidRPr="007F2374">
  <w:rPr>
    <w:highlight w:val="yellow" /> <!-- highlight
  </w:rPr>
  <w:fldChar w:fldCharType="begin" w:fldLock="1" />
</w:r>
<w:r w:rsidRPr="007F2374">
  <w:rPr>
    <w:highlight w:val="yellow" /> <!-- highlight
  </w:rPr>
  <w:instrText>TIME \@"HH:mm:ss"</w:instrText>
</w:r>
<w:r w:rsidRPr="007F2374">
  <w:rPr>
    <w:highlight w:val="yellow" /> <!-- highlight
  </w:rPr>
  <w:fldChar w:fldCharType="separate" />
</w:r>
<w:r w:rsidRPr="007F2374">
  <w:rPr>
    <w:highlight w:val="yellow" /> <!-- highlight
  </w:rPr>
  <w:t>14:01:13</w:t>
</w:r>
<w:r w:rsidRPr="007F2374">
  <w:rPr>
    <w:highlight w:val="yellow" /> <!-- highlight
  </w:rPr>
  <w:fldChar w:fldCharType="end" />
</w:r></pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>