Move delete form and more multi select fixes

This commit is contained in:
Alex Cabal 2024-12-19 14:40:38 -06:00
parent 93b8008c7e
commit 8e8cbb0c5e
10 changed files with 136 additions and 24 deletions

View file

@ -20,7 +20,7 @@ try{
$ebook = Ebook::GetByIdentifier($identifier);
if($ebook->IsPlaceholder()){
require('/standardebooks.org/web/www/ebook-placeholders/get.php');
require(WEB_ROOT . '/ebook-placeholders/get.php');
exit();
}
@ -71,7 +71,7 @@ catch(Exceptions\EbookNotFoundException){
// Are we accessing a placeholder for a Public Domain Day book that is not yet released?
if(array_key_exists($identifier, PD_DAY_EBOOKS)){
require('/standardebooks.org/web/www/ebooks/public-domain-day-placeholder.php');
require(WEB_ROOT . '/ebooks/public-domain-day-placeholder.php');
exit();
}