diff --git a/docker/Dockerfile b/docker/Dockerfile index 882690e9c..c8c5f9615 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,5 @@ # Use our base image -# FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.33-php8.3 -FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.50-php8.3 +FROM gitlab.luranasoft.com:5050/luos/docker/base-image:1.0.51-php8.3 # Set the working directory WORKDIR /code diff --git a/workflow/public_html/app.php b/workflow/public_html/app.php index 7b64189e7..7e259d4c7 100644 --- a/workflow/public_html/app.php +++ b/workflow/public_html/app.php @@ -62,7 +62,7 @@ try { $view = new PhtmlView($rootDir . "framework/src/templates/error.phtml"); $view->set("title", "Installation Required"); $view->set("message", "Please run lurana-installer to use the software. \n\nIf you've already run it, there might be an issue. \nPlease contact support."); -$view->set("exception", $e); + $view->set("exception", $e); $response = new Response($view->getOutput(), 403); $response->send(); } catch (Exception $e) {