From cdbc818037fe42b7e0d5bdf2194ed0563ba4ce2a Mon Sep 17 00:00:00 2001 From: ArthurHoaro Date: Sun, 7 Aug 2016 12:15:08 +0200 Subject: [PATCH] Bugfix: wrong key used to get default private links setting --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 091ad70..9ae798b 100644 --- a/index.php +++ b/index.php @@ -1412,7 +1412,7 @@ function renderPage($conf, $pluginManager) 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''), 'source' => (isset($_GET['source']) ? $_GET['source'] : ''), 'tags' => $LINKSDB->allTags(), - 'default_private_links' => $conf->get('default_private_links', false), + 'default_private_links' => $conf->get('privacy.default_private_links', false), ); $pluginManager->executeHooks('render_editlink', $data);