Removed unused variables
This commit is contained in:
parent
4d760489dd
commit
da7bb34a2c
2
book.php
2
book.php
|
@ -280,7 +280,6 @@ class Book extends Base {
|
||||||
$result = parent::getDb ()->prepare('select ' . self::BOOK_COLUMNS . '
|
$result = parent::getDb ()->prepare('select ' . self::BOOK_COLUMNS . '
|
||||||
from books left outer join comments on book = books.id
|
from books left outer join comments on book = books.id
|
||||||
where books.id = ?');
|
where books.id = ?');
|
||||||
$entryArray = array();
|
|
||||||
$result->execute (array ($bookId));
|
$result->execute (array ($bookId));
|
||||||
while ($post = $result->fetchObject ())
|
while ($post = $result->fetchObject ())
|
||||||
{
|
{
|
||||||
|
@ -294,7 +293,6 @@ where books.id = ?');
|
||||||
$result = parent::getDb ()->prepare('select ' . self::BOOK_COLUMNS . '
|
$result = parent::getDb ()->prepare('select ' . self::BOOK_COLUMNS . '
|
||||||
from data, books left outer join comments on comments.book = books.id
|
from data, books left outer join comments on comments.book = books.id
|
||||||
where data.book = books.id and data.id = ?');
|
where data.book = books.id and data.id = ?');
|
||||||
$entryArray = array();
|
|
||||||
$result->execute (array ($dataId));
|
$result->execute (array ($dataId));
|
||||||
while ($post = $result->fetchObject ())
|
while ($post = $result->fetchObject ())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue