Fix for FS#51
This commit is contained in:
parent
a73be47214
commit
54d941a3c8
|
@ -97,13 +97,16 @@ function get_next_comic($category = null) { return get_adjacent_comic($category,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the adjacent comic from the current one.
|
* Get the adjacent comic from the current one.
|
||||||
|
* @param int $category The category to use.
|
||||||
|
* @param boolean $next True if the next chronological comic should be retrieved.
|
||||||
|
* @return array The WordPress post object for the comic post.
|
||||||
*/
|
*/
|
||||||
function get_adjacent_comic($category, $next = false) {
|
function get_adjacent_comic($category, $next = false) {
|
||||||
global $non_comic_categories;
|
global $non_comic_categories;
|
||||||
|
|
||||||
$categories_to_exclude = $non_comic_categories;
|
$categories_to_exclude = $non_comic_categories;
|
||||||
if (!is_null($category)) {
|
if (!is_null($category)) {
|
||||||
$categories_to_exclude = get_string_to_exclude_all_but_provided_categories();
|
$categories_to_exclude = get_string_to_exclude_all_but_provided_categories($category);
|
||||||
}
|
}
|
||||||
|
|
||||||
return get_adjacent_post(false, $categories_to_exclude, $next);
|
return get_adjacent_post(false, $categories_to_exclude, $next);
|
||||||
|
|
Loading…
Reference in New Issue