Changeset 52978 for trunk/src/wp-includes/Text/Diff.php
- Timestamp:
- 03/22/2022 04:23:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/Text/Diff.php
r49194 r52978 261 261 { 262 262 if (serialize($from_lines) != serialize($this->getOriginal())) { 263 trigger_error("Reconstructed original does n't match", E_USER_ERROR);263 trigger_error("Reconstructed original does not match", E_USER_ERROR); 264 264 } 265 265 if (serialize($to_lines) != serialize($this->getFinal())) { 266 trigger_error("Reconstructed final does n't match", E_USER_ERROR);266 trigger_error("Reconstructed final does not match", E_USER_ERROR); 267 267 } 268 268 269 269 $rev = $this->reverse(); 270 270 if (serialize($to_lines) != serialize($rev->getOriginal())) { 271 trigger_error("Reversed original does n't match", E_USER_ERROR);271 trigger_error("Reversed original does not match", E_USER_ERROR); 272 272 } 273 273 if (serialize($from_lines) != serialize($rev->getFinal())) { 274 trigger_error("Reversed final does n't match", E_USER_ERROR);274 trigger_error("Reversed final does not match", E_USER_ERROR); 275 275 } 276 276
Note: See TracChangeset
for help on using the changeset viewer.