Changeset 970
- Timestamp:
- 03/10/2008 03:29:52 AM (2 years ago)
- Files:
-
- 1 modified
-
branches/1.1.6.4/handlers/page/diff.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1.6.4/handlers/page/diff.php
r968 r970 106 106 else 107 107 { 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']; 111 112 112 113 $sideA = new Side($textA);