]> BookStack Code Mirror - bookstack/blobdiff - app/Http/Controllers/BookController.php
Added login throttling test, updated reset-pw test method names
[bookstack] / app / Http / Controllers / BookController.php
index a041267bbdf87df17e4711a903200db2001ccb81..cc2f6f534b9f86264564601e896087a0e18e23e6 100644 (file)
@@ -147,7 +147,7 @@ class BookController extends Controller
     {
         $book = $this->bookRepo->getBySlug($slug);
         $this->checkOwnablePermission('book-update', $book);
-        $this->setPageTitle(trans('entities.books_edit_named', ['bookName'=>$book->getShortName()]));
+        $this->setPageTitle(trans('entities.books_edit_named', ['bookName' => $book->getShortName()]));
 
         return view('books.edit', ['book' => $book, 'current' => $book]);
     }