From 7c2de0ed5c555542e86b024dceabe94cc5d295c7 Mon Sep 17 00:00:00 2001 From: Alex Cabal Date: Tue, 15 Nov 2022 10:36:32 -0600 Subject: [PATCH] Fix bug where More Details section was not apearing in ebook detail page when there is no Wikipedia URL --- www/ebooks/ebook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/ebooks/ebook.php b/www/ebooks/ebook.php index c47549a0..7ab1c64b 100644 --- a/www/ebooks/ebook.php +++ b/www/ebooks/ebook.php @@ -311,7 +311,7 @@ catch(Exceptions\InvalidEbookException $ex){ - GitHubUrl !== null && $ebook->WikipediaUrl !== null){ ?> + GitHubUrl !== null || $ebook->WikipediaUrl !== null){ ?>

More details