wp/wp-includes/Text/Diff/Engine/shell.php
changeset 16 a86126ab1dd4
parent 7 cf61fcea0001
child 21 48c4eec2b7e6
--- a/wp/wp-includes/Text/Diff/Engine/shell.php	Tue Oct 22 16:11:46 2019 +0200
+++ b/wp/wp-includes/Text/Diff/Engine/shell.php	Tue Dec 15 13:49:49 2020 +0100
@@ -83,7 +83,7 @@
 
             if ($from_line_no < $match[1] || $to_line_no < $match[4]) {
                 // copied lines
-                assert('$match[1] - $from_line_no == $match[4] - $to_line_no');
+                assert($match[1] - $from_line_no == $match[4] - $to_line_no);
                 array_push($edits,
                     new Text_Diff_Op_copy(
                         $this->_getLines($from_lines, $from_line_no, $match[1] - 1),