]> BookStack Code Mirror - bookstack/blobdiff - app/Http/Controllers/PageController.php
Update auth.php
[bookstack] / app / Http / Controllers / PageController.php
index 84187f7451dadd736515262eb9ab029aebfac2eb..fc4b463e15f421fcd386ba054a6ae7919d09cd92 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,
@@ -410,11 +412,9 @@ class PageController extends Controller
 
         try {
             $parent = $this->pageRepo->move($page, $entitySelection);
+        } catch (PermissionsException $exception) {
+            $this->showPermissionError();
         } catch (Exception $exception) {
-            if ($exception instanceof PermissionsException) {
-                $this->showPermissionError();
-            }
-
             $this->showErrorNotification(trans('errors.selected_book_chapter_not_found'));
 
             return redirect()->back();