Changeset 59070
- Timestamp:
- 09/19/2024 08:20:30 PM (3 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/Text/Diff.php
r57309 r59070 277 277 $prevtype = null; 278 278 foreach ($this->_edits as $edit) { 279 if ($ edit instanceof $prevtype) {279 if ($prevtype !== null && $edit instanceof $prevtype) { 280 280 trigger_error("Edit sequence is non-optimal", E_USER_ERROR); 281 281 }
Note: See TracChangeset
for help on using the changeset viewer.