Add a permalink to book (the little linkish thingy)

fix the image zoom in the book detail
Add book title to the book detail
clean the code a little (more to do)
This commit is contained in:
Sébastien Lucas 2013-01-03 21:40:43 +01:00
parent c094e1564c
commit 0ba361e434
6 changed files with 23 additions and 6 deletions

View file

@ -413,7 +413,8 @@ class PageBookDetail extends Page
{
public function InitializeContent ()
{
$this->title = "Book";
$book = Book::getBookById ($this->idGet);
$this->title = $book->title;
}
}