You are here

function _DiffEngine::MAX_XREF_LENGTH in Diff 7.2

Same name and namespace in other branches
  1. 5.2 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
  2. 5 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
  3. 6.2 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
  4. 6 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
  5. 7.3 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
1 call to _DiffEngine::MAX_XREF_LENGTH()
_DiffEngine::_line_hash in ./DiffEngine.php
Returns the whole line if it's small enough, or the MD5 hash otherwise.

File

./DiffEngine.php, line 137
A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)

Class

_DiffEngine
Class used internally by Diff to actually compute the diffs.

Code

function MAX_XREF_LENGTH() {
  return 10000;
}