]> BookStack Code Mirror - bookstack/blobdiff - app/Http/Controllers/PageController.php
Added page titles to many missing app areas
[bookstack] / app / Http / Controllers / PageController.php
index 4a01dcc623692808ac33036b694a2679fbaa4284..3e57657da7199e6b5da0046b1c6f6008c50c932b 100644 (file)
@@ -368,6 +368,8 @@ class PageController extends Controller
             ->paginate(20)
             ->setPath(url('/pages/recently-updated'));
 
+        $this->setPageTitle(trans('entities.recently_updated_pages'));
+
         return view('common.detailed-listing-paginated', [
             'title'    => trans('entities.recently_updated_pages'),
             'entities' => $pages,
@@ -458,6 +460,7 @@ class PageController extends Controller
 
         if (is_null($newParent)) {
             $this->showErrorNotification(trans('errors.selected_book_chapter_not_found'));
+
             return redirect()->back();
         }