summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2018-06-08 10:09:24 -0400
committerAnthony G. Basile <blueness@gentoo.org>2018-06-08 10:09:24 -0400
commita6b006c0f1ef757f23375f7906193370337d8bd7 (patch)
tree4467c6423b2c54e6ef8c3e79241a833fb17833a5 /plugins/jetpack/modules/sitemaps/sitemap-librarian.php
parentUpdate akismet 4.0.7 (diff)
downloadblogs-gentoo-a6b006c0f1ef757f23375f7906193370337d8bd7.tar.gz
blogs-gentoo-a6b006c0f1ef757f23375f7906193370337d8bd7.tar.bz2
blogs-gentoo-a6b006c0f1ef757f23375f7906193370337d8bd7.zip
Update jetpack 6.2
Diffstat (limited to 'plugins/jetpack/modules/sitemaps/sitemap-librarian.php')
-rw-r--r--plugins/jetpack/modules/sitemaps/sitemap-librarian.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/jetpack/modules/sitemaps/sitemap-librarian.php b/plugins/jetpack/modules/sitemaps/sitemap-librarian.php
index f56a0ff8..4c41d095 100644
--- a/plugins/jetpack/modules/sitemaps/sitemap-librarian.php
+++ b/plugins/jetpack/modules/sitemaps/sitemap-librarian.php
@@ -325,10 +325,11 @@ class Jetpack_Sitemap_Librarian {
"SELECT *
FROM $wpdb->posts
WHERE post_type='attachment'
- AND post_mime_type IN ('image/jpeg','image/png','image/gif')
+ AND post_mime_type LIKE %s
AND ID>%d
ORDER BY ID ASC
LIMIT %d;",
+ 'image/%',
$from_id,
$num_posts
)
@@ -357,10 +358,11 @@ class Jetpack_Sitemap_Librarian {
"SELECT *
FROM $wpdb->posts
WHERE post_type='attachment'
- AND post_mime_type IN ('video/mpeg','video/wmv','video/mov','video/avi','video/ogg')
+ AND post_mime_type LIKE %s
AND ID>%d
ORDER BY ID ASC
LIMIT %d;",
+ 'video/%',
$from_id,
$num_posts
)