Skip to content

Commit

Permalink
Use BIGLINES options if available
Browse files Browse the repository at this point in the history
  • Loading branch information
Girgias committed May 14, 2024
1 parent 80e4404 commit 946f15d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configure.php
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,8 @@ function getFileModificationHistory(): array {
}

$compact = defined('LIBXML_COMPACT') ? LIBXML_COMPACT : 0;
$LIBXML_OPTS = LIBXML_NOENT | $compact;
$big_lines = defined('LIBXML_BIGLINES') ? LIBXML_BIGLINES : 0;
$LIBXML_OPTS = LIBXML_NOENT | $big_lines | $compact;

if ($ac['VERSION_FILES'] === 'yes') {
$dom = new DOMDocument;
Expand Down

0 comments on commit 946f15d

Please sign in to comment.