[simplehtmldom] Increase MAX_FILE_SIZE to 10 MB

This fixes an issue where larger pages could not be loaded
because the size limit is too small
This commit is contained in:
logmanoriginal 2018-12-11 17:14:15 +01:00
parent b00971b2c3
commit fb8a064e3a
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ define('HDOM_INFO_ENDSPACE',7);
define('DEFAULT_TARGET_CHARSET', 'UTF-8');
define('DEFAULT_BR_TEXT', "\r\n");
define('DEFAULT_SPAN_TEXT', " ");
define('MAX_FILE_SIZE', 600000);
define('MAX_FILE_SIZE', 10000000);
/** Contents between curly braces "{" and "}" are interpreted as text */
define('HDOM_SMARTY_AS_TEXT', 1);