diff options
author | Evan Prodromou <evan@status.net> | 2010-04-12 11:05:19 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-06-01 13:52:27 -0700 |
commit | 8b9ce731f4707f6939497d139521acee56596dea (patch) | |
tree | 0ff07271258123b54d0e39c1f77436e0c7127da9 /plugins/Sitemap | |
parent | 4b321f96fc9b45ae3000088b8cfd856f9ffe1529 (diff) |
max users, notices per sitemap = 50K
Diffstat (limited to 'plugins/Sitemap')
-rw-r--r-- | plugins/Sitemap/SitemapPlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Sitemap/SitemapPlugin.php b/plugins/Sitemap/SitemapPlugin.php index fa9c9a76d..29c32a624 100644 --- a/plugins/Sitemap/SitemapPlugin.php +++ b/plugins/Sitemap/SitemapPlugin.php @@ -47,8 +47,8 @@ if (!defined('STATUSNET')) { class SitemapPlugin extends Plugin { - const USERS_PER_MAP = 25000; - const NOTICES_PER_MAP = 25000; + const USERS_PER_MAP = 50000; + const NOTICES_PER_MAP = 50000; /** * Load related modules when needed |