Regarding my extension for dynamic adaption of
$wgResourceLoaderMaxQueryLength in accordance to current suhosin parameter in php.ini
it is correct to assume such a format
http://example.com/?name1=value1&name2=value2&name3=value3
i.e. $wgResourceLoaderMaxQueryLength = the max. total length of query stream =
( (max. length of names) + (max. length of values) + 2 ) * ( max. number of name/value pairs )
Rusty wrote $wgResourceLoaderMaxQueryLength limits the *total* length of *all* names and values.
Can you confirm ?