From e32e56929693c4bec7015f480edc14408054c83b Mon Sep 17 00:00:00 2001 From: Marcin Kurczewski Date: Sun, 1 Jun 2014 14:16:05 +0200 Subject: [PATCH] Fixed default thumbnail retrieval --- src/Api/Jobs/PostJobs/GetPostThumbnailJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Jobs/PostJobs/GetPostThumbnailJob.php b/src/Api/Jobs/PostJobs/GetPostThumbnailJob.php index 0dfce1355..bd1790206 100644 --- a/src/Api/Jobs/PostJobs/GetPostThumbnailJob.php +++ b/src/Api/Jobs/PostJobs/GetPostThumbnailJob.php @@ -20,7 +20,7 @@ public function execute() if (!file_exists($path) or !is_readable($path)) { - $path = Core::getConfig()->main->mediaPath . DS . 'img' . DS . 'thumbnail.jpg'; + $path = Core::getConfig()->main->mediaPath . DS . 'img' . DS . 'thumb.jpg'; $path = TextHelper::absolutePath($path); } }