Move NOTICES_PER_MAP to SitemapPlugin

This commit is contained in:
Evan Prodromou 2010-04-12 10:23:32 -04:00
parent a4f0dfd3a1
commit 9970645aa2
2 changed files with 4 additions and 5 deletions

View File

@ -47,7 +47,8 @@ if (!defined('STATUSNET')) {
class SitemapPlugin extends Plugin class SitemapPlugin extends Plugin
{ {
const USERS_PER_MAP = 25000; const USERS_PER_MAP = 25000;
const NOTICES_PER_MAP = 25000;
/** /**
* Load related modules when needed * Load related modules when needed

View File

@ -43,8 +43,6 @@ if (!defined('STATUSNET')) {
class NoticesitemapAction extends SitemapAction class NoticesitemapAction extends SitemapAction
{ {
const NOTICES_PER_MAP = 25000;
var $notice = null; var $notice = null;
function prepare($args) function prepare($args)
@ -63,8 +61,8 @@ class NoticesitemapAction extends SitemapAction
$d += 0; $d += 0;
$i += 0; $i += 0;
$offset = ($i-1) * self::NOTICES_PER_MAP; $offset = ($i-1) * SitemapPlugin::NOTICES_PER_MAP;
$limit = self::NOTICES_PER_MAP; $limit = SitemapPlugin::NOTICES_PER_MAP;
$this->notice = new Notice(); $this->notice = new Notice();