From 3b2a2c1c6a0c235fb2dd4a1ce66fcf7f80f2ddc1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 17 Jul 2008 12:02:57 -0400 Subject: [PATCH] restrict avatars to certain sizes in SQL darcs-hash:20080717160257-84dde-8c4f78582ef0d590102c078a045826951ffcbb28.gz --- sitemap.php | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/sitemap.php b/sitemap.php index 876c25251b..9bbeae8a87 100644 --- a/sitemap.php +++ b/sitemap.php @@ -206,20 +206,19 @@ function user_map() { function avatar_map() { global $output_paths; - $avatars = DB_DataObject::factory('avatar'); - - $avatars->query('SELECT url, modified FROM avatar'); + $avatars = new Avatar(); + $avatars->whereAdd('original = 1', "OR"); + $avatars->whereAdd('width = ' . AVATAR_MINI_SIZE, 'OR'); + if (!$avatars->find()) { + return 0; + } + $avatar_count = 0; $map_count = 1; while ($avatars->fetch()) { - # We only want the original size and 24px thumbnail version - skip 96px. - if (preg_match('/-96-/', $avatars->url)) { - continue; - } - # Maximum 50,000 URLs per sitemap file. if ($avatar_count == 50000) { $avatar_count = 0;