function DiffFormatter::_changed

1 call to DiffFormatter::_changed()
DiffFormatter::_block in drupal/core/lib/Drupal/Component/Diff/DiffEngine.php
1 method overrides DiffFormatter::_changed()
DrupalDiffFormatter::_changed in drupal/core/lib/Drupal/Component/Diff/DiffEngine.php

File

drupal/core/lib/Drupal/Component/Diff/DiffEngine.php, line 932
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);
}