1 diff.inc | DiffOpCopy::__construct($orig, $closing = FALSE) |
File
- core/
includes/ diff.inc, line 60 - A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)
Class
Code
function __construct($orig, $closing = FALSE) {
if (!is_array($closing)) {
$closing = $orig;
}
$this->orig = $orig;
$this->closing = $closing;
}