1
0
Fork 0

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)
Dieser Commit ist enthalten in:
Sébastien Lucas 2013-01-03 21:40:43 +01:00
Ursprung c094e1564c
Commit 0ba361e434
6 geänderte Dateien mit 23 neuen und 6 gelöschten Zeilen

Datei anzeigen

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