|
|
@@ -77,7 +77,8 @@ class Api_WfsServerBase {
|
|
|
|
|
|
$args['limit'] = V::get('maxfeatures', $args['limit'], $lowerArgs, 'int');
|
|
|
$args['limit'] = V::get('count', $args['limit'], $lowerArgs, 'int');
|
|
|
- if ($args['limit'] <= 0) $args['limit'] = 10000;// default limit
|
|
|
+ $defaultFeaturesLimit = ('biuro.biall-net.pl' == V::get('SERVER_NAME', '', $_SERVER)) ? 50000 : 10000;
|
|
|
+ if ($args['limit'] <= 0) $args['limit'] = $defaultFeaturesLimit;// default limit
|
|
|
|
|
|
$args['offset'] = V::get('startindex', 0, $lowerArgs, 'int');
|
|
|
|