function _HWLDF_WordAccumulator::_flushGroup

2 calls to _HWLDF_WordAccumulator::_flushGroup()
_HWLDF_WordAccumulator::addWords in drupal/core/lib/Drupal/Component/Diff/DiffEngine.php
_HWLDF_WordAccumulator::_flushLine in drupal/core/lib/Drupal/Component/Diff/DiffEngine.php

File

drupal/core/lib/Drupal/Component/Diff/DiffEngine.php, line 960
A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)

Class

_HWLDF_WordAccumulator
@todo document @private @subpackage DifferenceEngine

Code

function _flushGroup($new_tag) {
  if ($this->_group !== '') {
    if ($this->_tag == 'mark') {
      $this->_line .= '<span class="diffchange">' . check_plain($this->_group) . '</span>';
    }
    else {
      $this->_line .= check_plain($this->_group);
    }
  }
  $this->_group = '';
  $this->_tag = $new_tag;
}