diff options
author | ArthurHoaro <arthur@hoa.ro> | 2018-01-30 19:15:30 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2018-01-30 19:15:30 +0100 |
commit | a74184e1b0a9d503e1ea75812583967e7110c2f2 (patch) | |
tree | d596a0af4c819509d0bea8d5bdaf9041e7e77808 /application/exceptions | |
parent | 57e4a974f7332ec694822ec61b8527cc31152798 (diff) | |
parent | 99a554904498d4d6985216568b32833c73e9825f (diff) | |
download | Shaarli-a74184e1b0a9d503e1ea75812583967e7110c2f2.tar.gz Shaarli-a74184e1b0a9d503e1ea75812583967e7110c2f2.tar.zst Shaarli-a74184e1b0a9d503e1ea75812583967e7110c2f2.zip |
Merge tag 'v0.9.4' into latest
Release v0.9.4
Diffstat (limited to 'application/exceptions')
-rw-r--r-- | application/exceptions/IOException.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/exceptions/IOException.php b/application/exceptions/IOException.php index b563b23d..18e46b77 100644 --- a/application/exceptions/IOException.php +++ b/application/exceptions/IOException.php | |||
@@ -16,7 +16,7 @@ class IOException extends Exception | |||
16 | public function __construct($path, $message = '') | 16 | public function __construct($path, $message = '') |
17 | { | 17 | { |
18 | $this->path = $path; | 18 | $this->path = $path; |
19 | $this->message = empty($message) ? 'Error accessing' : $message; | 19 | $this->message = empty($message) ? t('Error accessing') : $message; |
20 | $this->message .= ' "' . $this->path .'"'; | 20 | $this->message .= ' "' . $this->path .'"'; |
21 | } | 21 | } |
22 | } | 22 | } |