<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: DOC/DOCX - Track change of fields not saved correctly"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=70234">bug 70234</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;">Keywords</td>
           <td>
                
           </td>
           <td>bibisectRequest, regression
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">CC</td>
           <td>
                
           </td>
           <td>philipz85@hotmail.com
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">See Also</td>
           <td>
                
           </td>
           <td>https://bugs.documentfoundation.org/show_bug.cgi?id=107716
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Blocks</td>
           <td>
                
           </td>
           <td>83946, 104520
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Summary</td>
           <td>DOC/DOCX export restores the deleted fields at change tracking
           </td>
           <td>FILESAVE: DOC/DOCX - Track change of fields not saved correctly
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - FILESAVE: DOC/DOCX - Track change of fields not saved correctly"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=70234#c6">Comment # 6</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - FILESAVE: DOC/DOCX - Track change of fields not saved correctly"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=70234">bug 70234</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>So the problem here is that the <w:del> tag is only being placed around the
first run element, rather than the entire group of run elements related to the
field.

How it used to be in 4.0

<w:del ... w:id="0">
  <w:r>
    <w:rPr></w:rPr>
    <w:fldChar w:fldCharType="begin"></w:fldChar>
  </w:r>
  <w:r>
    <w:instrText>PAGE</w:instrText>
  </w:r>
  <w:r>
    <w:fldChar w:fldCharType="separate" />
  </w:r>
  <w:r>
    <w:delText>1</w:delText>
  </w:r>
  <w:r>
    <w:fldChar w:fldCharType="end" />
  </w:r>
</w:del>

How it is in 4.1 and above

<w:del ... w:id="0">
  <w:r>
    <w:rPr></w:rPr>
    <w:fldChar w:fldCharType="begin"></w:fldChar>
  </w:r>
</w:del> <- the problem happens here
<w:r>
  <w:instrText>PAGE</w:instrText>
</w:r>
<w:r>
  <w:fldChar w:fldCharType="separate" />
</w:r>
<w:r>
  <w:t>1</w:t>
</w:r>
<w:r>
  <w:fldChar w:fldCharType="end" />
</w:r></pre>
        </div>
      </p>

        <div id="referenced">
          <hr style="border: 1px dashed #969696">
          <b>Referenced Bugs:</b>
          <ul>
              <li>
                [<a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [META] Bugs for tracking changes"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=83946">Bug 83946</a>] [META] Bugs for tracking changes
              </li>
              <li>
                [<a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [META] DOCX (OOXML) bug tracker"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=104520">Bug 104520</a>] [META] DOCX (OOXML) bug tracker
              </li>
          </ul>
        </div>
        <br>

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

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