diff options
author | ArthurHoaro <arthur@hoa.ro> | 2019-02-24 11:29:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-24 11:29:56 +0100 |
commit | 015314f3c6a1ce0b2c45fdb2fb0d36a15cab10f5 (patch) | |
tree | c805547e171afd615b90486fa8bd7656f5fb9090 /application/api | |
parent | 0ee11e93907f0132e3b25a185093047bcd6b141d (diff) | |
parent | 520d29578c57e476ece3bdd20c286d196b7b61b4 (diff) | |
download | Shaarli-015314f3c6a1ce0b2c45fdb2fb0d36a15cab10f5.tar.gz Shaarli-015314f3c6a1ce0b2c45fdb2fb0d36a15cab10f5.tar.zst Shaarli-015314f3c6a1ce0b2c45fdb2fb0d36a15cab10f5.zip |
Merge pull request #1269 from ArthurHoaro/feature/remove-redirector
Remove the redirector setting
Diffstat (limited to 'application/api')
-rw-r--r-- | application/api/ApiMiddleware.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/application/api/ApiMiddleware.php b/application/api/ApiMiddleware.php index 5ffb8c6d..2d55bda6 100644 --- a/application/api/ApiMiddleware.php +++ b/application/api/ApiMiddleware.php | |||
@@ -129,9 +129,7 @@ class ApiMiddleware | |||
129 | $linkDb = new \Shaarli\Bookmark\LinkDB( | 129 | $linkDb = new \Shaarli\Bookmark\LinkDB( |
130 | $conf->get('resource.datastore'), | 130 | $conf->get('resource.datastore'), |
131 | true, | 131 | true, |
132 | $conf->get('privacy.hide_public_links'), | 132 | $conf->get('privacy.hide_public_links') |
133 | $conf->get('redirector.url'), | ||
134 | $conf->get('redirector.encode_url') | ||
135 | ); | 133 | ); |
136 | $this->container['db'] = $linkDb; | 134 | $this->container['db'] = $linkDb; |
137 | } | 135 | } |