Changeset 24362 for trunk/wp-includes/Text/Diff/Renderer.php
- Timestamp:
- 05/25/2013 09:38:25 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/Text/Diff/Renderer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/Text/Diff/Renderer.php
r13211 r24362 99 99 * for the trailing context. */ 100 100 $context = array_slice($edit->orig, 0, $ntrail); 101 $block[] = &new Text_Diff_Op_copy($context);101 $block[] = new Text_Diff_Op_copy($context); 102 102 } 103 103 /* @todo */ … … 119 119 $block = array(); 120 120 if ($context) { 121 $block[] = &new Text_Diff_Op_copy($context);121 $block[] = new Text_Diff_Op_copy($context); 122 122 } 123 123 }
Note: See TracChangeset
for help on using the changeset viewer.