Changeset 13211 for trunk/wp-includes/Text/Diff/Engine/xdiff.php
- Timestamp:
- 02/19/2010 01:25:26 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/Text/Diff/Engine/xdiff.php
r7747 r13211 6 6 * to compute the differences between the two input arrays. 7 7 * 8 * $Horde: framework/Text_Diff/Diff/Engine/xdiff.php,v 1.6 2008/01/04 10:07:50 jan Exp $ 9 * 10 * Copyright 2004-2008 The Horde Project (http://www.horde.org/) 8 * Copyright 2004-2010 The Horde Project (http://www.horde.org/) 11 9 * 12 10 * See the enclosed file COPYING for license information (LGPL). If you did … … 43 41 $edits = array(); 44 42 foreach ($diff as $line) { 43 if (!strlen($line)) { 44 continue; 45 } 45 46 switch ($line[0]) { 46 47 case ' ':
Note: See TracChangeset
for help on using the changeset viewer.