diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-09 00:16:22 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-09 00:16:22 +0200 |
commit | dccc0877c1cc34826c5178247a06e8c1ca7702a0 (patch) | |
tree | eba5471cf1326477bc39a77b7391b6792f8e0cec /phpBB/includes/message_parser.php | |
parent | 9d18b3d1eeb1cb755fb7949bad07a7586eef4962 (diff) | |
parent | 58286171f1035495c8c2a6fdffce9f3842601e66 (diff) | |
download | forums-dccc0877c1cc34826c5178247a06e8c1ca7702a0.tar forums-dccc0877c1cc34826c5178247a06e8c1ca7702a0.tar.gz forums-dccc0877c1cc34826c5178247a06e8c1ca7702a0.tar.bz2 forums-dccc0877c1cc34826c5178247a06e8c1ca7702a0.tar.xz forums-dccc0877c1cc34826c5178247a06e8c1ca7702a0.zip |
Merge pull request #3891 from marc1706/ticket/14150
[ticket/14150] Update fast-image-size to newest version
* marc1706/ticket/14150:
[ticket/14150] Update fast-image-size to newest version
Diffstat (limited to 'phpBB/includes/message_parser.php')
-rw-r--r-- | phpBB/includes/message_parser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php index c50212e8ff..31fc1577a2 100644 --- a/phpBB/includes/message_parser.php +++ b/phpBB/includes/message_parser.php @@ -403,7 +403,7 @@ class bbcode_firstpass extends bbcode if ($config['max_' . $this->mode . '_img_height'] || $config['max_' . $this->mode . '_img_width']) { - $imagesize = new \fastImageSize\fastImageSize(); + $imagesize = new \FastImageSize\FastImageSize(); $size_info = $imagesize->getImageSize(htmlspecialchars_decode($in)); if ($size_info === false) |