You are here

function DiffFormatter::_changed in Diff 7.2

Same name and namespace in other branches
  1. 5.2 DiffEngine.php \DiffFormatter::_changed()
  2. 5 DiffEngine.php \DiffFormatter::_changed()
  3. 6.2 DiffEngine.php \DiffFormatter::_changed()
  4. 6 DiffEngine.php \DiffFormatter::_changed()
  5. 7.3 DiffEngine.php \DiffFormatter::_changed()
1 call to DiffFormatter::_changed()
DiffFormatter::_block in ./DiffEngine.php
1 method overrides DiffFormatter::_changed()
DrupalDiffFormatter::_changed in ./DiffEngine.php

File

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

Class

DiffFormatter
A class to format Diffs

Code

function _changed($orig, $closing) {
  $this
    ->_deleted($orig);
  echo "---\n";
  $this
    ->_added($closing);
}