Adjust classes and scripts for the book change.

(cherry picked from commit e43460c)
This commit is contained in:
DariusIII
2015-09-06 21:26:07 +02:00
parent dfd08c410c
commit 5c2709ad0f
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -213,7 +213,7 @@ class PostProcess
{
if ($this->pdo->getSetting('lookupbooks') == 1)
{
$book = new Book($this->echooutput);
$book = new Books($this->echooutput);
$book->processBookReleases();
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
require_once './config.php';
$page = new AdminPage();
$book = new Book();
$book = new Books();
$gen = new Genres();
$id = 0;
+1 -1
View File
@@ -4,7 +4,7 @@ require_once './config.php';
$page = new AdminPage();
$book = new Book();
$book = new Books();
$page->title = "Book List";
+1 -1
View File
@@ -1,6 +1,6 @@
<?php
$b = new Book;
$b = new Books;
if (!$page->users->isLoggedIn())
$page->show403();
+1 -1
View File
@@ -126,7 +126,7 @@ if (isset($_GET["id"]))
$book = '';
if ($data['bookinfoid'] != '') {
$b = new Book();
$b = new Books();
$book = $b->getBookInfo($data['bookinfoid']);
}