From e9711a1e6eef41ffc5b154e7e663e1db70bc4e68 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Fri, 15 Jul 2016 13:38:42 -0400 Subject: [PATCH] fix blog covers path for meta tags --- model/Post.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/Post.class.php b/model/Post.class.php index ca277d9d..86958276 100644 --- a/model/Post.class.php +++ b/model/Post.class.php @@ -249,7 +249,7 @@ class Post $cover = $this->getCover(); if ($cover) { - $urls[] = 'https://' . $_SERVER['SERVER_NAME'] . '/img/' . $cover; + $urls[] = 'https://' . $_SERVER['SERVER_NAME'] . '/img/blog-covers/' . $cover; } $matches = [];