From 0694166587a31b2dca837dec8724d3102caede5e Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Tue, 21 Apr 2020 11:11:47 +0300 Subject: [PATCH] Fixed form layout path --- app/controllers/web/console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/web/console.php b/app/controllers/web/console.php index 86102a8a60..88ba374351 100644 --- a/app/controllers/web/console.php +++ b/app/controllers/web/console.php @@ -83,7 +83,6 @@ $utopia->get('/console/account') ; $layout - ->setPath(__DIR__.'/../../views/layouts/strip.phtml') ->setParam('title', 'Account - '.APP_NAME) ->setParam('body', $page); }); @@ -234,6 +233,7 @@ $utopia->get('/console/database/form') ; $layout + ->setPath(__DIR__.'/../../views/layouts/strip.phtml') ->setParam('title', APP_NAME.' - Database Form') ->setParam('body', $page); });