diff --git a/templates/themes/recent/theme.php b/templates/themes/recent/theme.php index 4bbf1469..26a9a69b 100644 --- a/templates/themes/recent/theme.php +++ b/templates/themes/recent/theme.php @@ -45,6 +45,11 @@ $query .= sprintf("SELECT *, '%s' AS `board` FROM ``posts_%s`` WHERE `file` IS NOT NULL AND `file` != 'deleted' AND `thumb` != 'spoiler' UNION ALL ", $_board['uri'], $_board['uri']); } $query = preg_replace('/UNION ALL $/', 'ORDER BY `time` DESC LIMIT ' . (int)$settings['limit_images'], $query); + + if ($query == '') { + error(_("Can't build the RecentPosts theme, because there are no boards to be fetched.")); + } + $query = query($query) or error(db_error()); while ($post = $query->fetch(PDO::FETCH_ASSOC)) {