mark user pages as being high priority

This commit is contained in:
Evan Prodromou 2010-05-03 11:23:18 -04:00
parent 40618b49e1
commit 3e349a71ca

View File

@ -72,7 +72,7 @@ class UsersitemapAction extends SitemapAction
if ($this->j < count($this->users)) {
$nickname = $this->users[$this->j];
$this->j++;
return array(common_profile_url($nickname), null, null, null);
return array(common_profile_url($nickname), null, null, '1.0');
} else {
return null;
}