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 /index.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 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1635,9 +1635,9 @@ function buildLinkList($PAGE, $LINKSDB, $conf, $pluginManager, $loginManager) | |||
1635 | uasort($taglist, 'strcasecmp'); | 1635 | uasort($taglist, 'strcasecmp'); |
1636 | $link['taglist'] = $taglist; | 1636 | $link['taglist'] = $taglist; |
1637 | 1637 | ||
1638 | // Thumbnails enabled, not a note, | 1638 | // Logged in, thumbnails enabled, not a note, |
1639 | // and (never retrieved yet or no valid cache file) | 1639 | // and (never retrieved yet or no valid cache file) |
1640 | if ($thumbnailsEnabled && $link['url'][0] != '?' | 1640 | if ($loginManager->isLoggedIn() && $thumbnailsEnabled && $link['url'][0] != '?' |
1641 | && (! isset($link['thumbnail']) || ($link['thumbnail'] !== false && ! is_file($link['thumbnail']))) | 1641 | && (! isset($link['thumbnail']) || ($link['thumbnail'] !== false && ! is_file($link['thumbnail']))) |
1642 | ) { | 1642 | ) { |
1643 | $elem = $LINKSDB[$keys[$i]]; | 1643 | $elem = $LINKSDB[$keys[$i]]; |