mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
Adjust classes and scripts for the book change.
(cherry picked from commit e43460c)
This commit is contained in:
@@ -213,7 +213,7 @@ class PostProcess
|
||||
{
|
||||
if ($this->pdo->getSetting('lookupbooks') == 1)
|
||||
{
|
||||
$book = new Book($this->echooutput);
|
||||
$book = new Books($this->echooutput);
|
||||
$book->processBookReleases();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
require_once './config.php';
|
||||
|
||||
$page = new AdminPage();
|
||||
$book = new Book();
|
||||
$book = new Books();
|
||||
$gen = new Genres();
|
||||
$id = 0;
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ require_once './config.php';
|
||||
|
||||
$page = new AdminPage();
|
||||
|
||||
$book = new Book();
|
||||
$book = new Books();
|
||||
|
||||
$page->title = "Book List";
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
$b = new Book;
|
||||
$b = new Books;
|
||||
|
||||
if (!$page->users->isLoggedIn())
|
||||
$page->show403();
|
||||
|
||||
@@ -126,7 +126,7 @@ if (isset($_GET["id"]))
|
||||
|
||||
$book = '';
|
||||
if ($data['bookinfoid'] != '') {
|
||||
$b = new Book();
|
||||
$b = new Books();
|
||||
$book = $b->getBookInfo($data['bookinfoid']);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user