aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/Thumbnailer.php
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2018-10-13 01:40:04 +0200
committerVirtualTam <virtualtam@flibidi.net>2018-12-02 22:39:16 +0100
commit9d9f6d75b94aab51067bdfbe50b58b66d1194f6d (patch)
treeaa0e5743390296441edf09f44f95b3d21f2b5a16 /application/Thumbnailer.php
parent067c2dd8f5f6eb6cc808ddc4bd30aec104caf73d (diff)
downloadShaarli-9d9f6d75b94aab51067bdfbe50b58b66d1194f6d.tar.gz
Shaarli-9d9f6d75b94aab51067bdfbe50b58b66d1194f6d.tar.zst
Shaarli-9d9f6d75b94aab51067bdfbe50b58b66d1194f6d.zip
lint: fix line-length warnings
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'application/Thumbnailer.php')
-rw-r--r--application/Thumbnailer.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/application/Thumbnailer.php b/application/Thumbnailer.php
index 7d0d9c33..37ed97a1 100644
--- a/application/Thumbnailer.php
+++ b/application/Thumbnailer.php
@@ -58,7 +58,10 @@ class Thumbnailer
58 $this->conf->set('thumbnails.enabled', false); 58 $this->conf->set('thumbnails.enabled', false);
59 $this->conf->write(true); 59 $this->conf->write(true);
60 // TODO: create a proper error handling system able to catch exceptions... 60 // TODO: create a proper error handling system able to catch exceptions...
61 die(t('php-gd extension must be loaded to use thumbnails. Thumbnails are now disabled. Please reload the page.')); 61 die(t(
62 'php-gd extension must be loaded to use thumbnails. '
63 .'Thumbnails are now disabled. Please reload the page.'
64 ));
62 } 65 }
63 66
64 $this->wt = new WebThumbnailer(); 67 $this->wt = new WebThumbnailer();