Skip to content

Commit 946f15d

Browse files
committed
Use BIGLINES options if available
1 parent 80e4404 commit 946f15d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

configure.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,8 @@ function getFileModificationHistory(): array {
673673
}
674674

675675
$compact = defined('LIBXML_COMPACT') ? LIBXML_COMPACT : 0;
676-
$LIBXML_OPTS = LIBXML_NOENT | $compact;
676+
$big_lines = defined('LIBXML_BIGLINES') ? LIBXML_BIGLINES : 0;
677+
$LIBXML_OPTS = LIBXML_NOENT | $big_lines | $compact;
677678

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

0 commit comments

Comments
 (0)