Changeset 970

Show
Ignore:
Timestamp:
03/10/2008 03:29:52 AM (16 months ago)
Author:
DotMG
Message:

refs #701, part 3.

The issue was introduced by release 1.1.6.3.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.1.6.4/handlers/page/diff.php

    r968 r970  
    106106        else 
    107107        { 
    108                 // extract text from bodies 
    109                 $textA = $pageA['body']; 
    110                 $textB = $pageB['body']; 
     108                // extract text from bodies SEE #701, part 3, $textA = $pageB['body'] and not $pageA['body']. 
     109                // That's how it was in release 1.1.6.2 
     110                $textA = $pageB['body']; 
     111                $textB = $pageA['body']; 
    111112         
    112113                $sideA = new Side($textA);