From 9500ac156758acfcea379d759abafdc16f7acb5a Mon Sep 17 00:00:00 2001 From: Stein Magne Bjorklund <steinmb@smbjorklund.com> Date: Fri, 17 Sep 2021 12:35:49 +0200 Subject: [PATCH] Application $conf['home'] should be included in the default settings Needed by the application and we must make sure it is there. Anyone that does not like this can locally override this settings. One less settings that needs to live in settings.inc.php. --- common.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/common.inc.php b/common.inc.php index 7381c8fe..f88a26b2 100644 --- a/common.inc.php +++ b/common.inc.php @@ -1,6 +1,7 @@ <?php $conf['version'] = '20130612'; +$conf['home'] = LOADSPEAKR_ROOT . '/'; $conf['output']['select'] = 'json'; $conf['output']['ask'] = 'json'; $conf['output']['describe'] = 'rdf'; -- GitLab