diff options
author | ArthurHoaro <arthur@hoa.ro> | 2018-08-11 13:36:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-11 13:36:47 +0200 |
commit | 1c88a7b33e90ba3e33d88b148c086bc298126332 (patch) | |
tree | 8a2bc8b330bde3eaf38adbba90bb79bef4a9ef6e /application/Updater.php | |
parent | dccd62cbd6a3966e2b61d31c603fad4cc8ce4878 (diff) | |
parent | b5c368b85885b82e7db7e509c8a7e2035d51e0a1 (diff) | |
download | Shaarli-1c88a7b33e90ba3e33d88b148c086bc298126332.tar.gz Shaarli-1c88a7b33e90ba3e33d88b148c086bc298126332.tar.zst Shaarli-1c88a7b33e90ba3e33d88b148c086bc298126332.zip |
Merge pull request #1199 from ArthurHoaro/hotfix/thumbnails-edit-link
Fix issue 'You are not authorized to add a link' with thumbnails enabled
Diffstat (limited to 'application/Updater.php')
-rw-r--r-- | application/Updater.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/Updater.php b/application/Updater.php index c2aa1568..480bff82 100644 --- a/application/Updater.php +++ b/application/Updater.php | |||
@@ -502,7 +502,7 @@ class Updater | |||
502 | return true; | 502 | return true; |
503 | } | 503 | } |
504 | 504 | ||
505 | $thumbnailsEnabled = $this->conf->get('thumbnail.enable_thumbnails', true); | 505 | $thumbnailsEnabled = extension_loaded('gd') && $this->conf->get('thumbnail.enable_thumbnails', true); |
506 | $this->conf->set('thumbnails.mode', $thumbnailsEnabled ? Thumbnailer::MODE_ALL : Thumbnailer::MODE_NONE); | 506 | $this->conf->set('thumbnails.mode', $thumbnailsEnabled ? Thumbnailer::MODE_ALL : Thumbnailer::MODE_NONE); |
507 | $this->conf->set('thumbnails.width', 125); | 507 | $this->conf->set('thumbnails.width', 125); |
508 | $this->conf->set('thumbnails.height', 90); | 508 | $this->conf->set('thumbnails.height', 90); |