From 67af726fe9aedb91b06159fd739c3ada30b6049d Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Thu, 8 Nov 2012 11:29:27 -0500
Subject: [PATCH] Disable custom 404s in console mode.

---
 module/VuFind/src/VuFind/Bootstrap.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/module/VuFind/src/VuFind/Bootstrap.php b/module/VuFind/src/VuFind/Bootstrap.php
index 95499d83776..8fc15b586a0 100644
--- a/module/VuFind/src/VuFind/Bootstrap.php
+++ b/module/VuFind/src/VuFind/Bootstrap.php
@@ -318,6 +318,11 @@ class Bootstrap
      */
     protected function initExceptionBased404s()
     {
+        // 404s not needed in console mode:
+        if (Console::isConsole()) {
+            return;
+        }
+
         $callback = function ($e) {
             $exception = $e->getParam('exception');
             if (is_object($exception)) {
-- 
GitLab