diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-09-09 09:41:40 +0200 | 
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2015-09-09 09:41:40 +0200 | 
| commit | 327e36a4d68ff9607967af52ef8f6a00c60343ff (patch) | |
| tree | 84ad0be3d861f33636f1641c4593a067fea4ef5e /phpBB/phpbb | |
| parent | 223fa3aed5df1c2885c2f7fe837ac8cb47cd44f2 (diff) | |
| download | forums-327e36a4d68ff9607967af52ef8f6a00c60343ff.tar forums-327e36a4d68ff9607967af52ef8f6a00c60343ff.tar.gz forums-327e36a4d68ff9607967af52ef8f6a00c60343ff.tar.bz2 forums-327e36a4d68ff9607967af52ef8f6a00c60343ff.tar.xz forums-327e36a4d68ff9607967af52ef8f6a00c60343ff.zip | |
[ticket/13904] Modify files for updated fast-image-size library
PHPBB3-13904
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/files/filespec.php | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/phpBB/phpbb/files/filespec.php b/phpBB/phpbb/files/filespec.php index 83007f11c0..e171e7e68f 100644 --- a/phpBB/phpbb/files/filespec.php +++ b/phpBB/phpbb/files/filespec.php @@ -75,7 +75,7 @@ class filespec  	/** @var \bantu\IniGetWrapper\IniGetWrapper ini_get() wrapper class */  	protected $php_ini; -	/** @var \fastImageSize\fastImageSize */ +	/** @var \FastImageSize\FastImageSize */  	protected $imagesize;  	/** @var language Language class */ @@ -96,12 +96,12 @@ class filespec  	 * @param \phpbb\filesystem\filesystem_interface	$phpbb_filesystem Filesystem  	 * @param language					$language Language  	 * @param \bantu\IniGetWrapper\IniGetWrapper			$php_ini ini_get() wrapper -	 * @param \fastImageSize\fastImageSize $imagesize Imagesize class +	 * @param \FastImageSize\FastImageSize $imagesize Imagesize class  	 * @param string					$phpbb_root_path phpBB root path  	 * @param \phpbb\mimetype\guesser	$mimetype_guesser Mime type guesser  	 * @param \phpbb\plupload\plupload	$plupload Plupload  	 */ -	public function __construct(\phpbb\filesystem\filesystem_interface $phpbb_filesystem, language $language, \bantu\IniGetWrapper\IniGetWrapper $php_ini, \fastImageSize\fastImageSize $imagesize, $phpbb_root_path, \phpbb\mimetype\guesser $mimetype_guesser = null, \phpbb\plupload\plupload $plupload = null) +	public function __construct(\phpbb\filesystem\filesystem_interface $phpbb_filesystem, language $language, \bantu\IniGetWrapper\IniGetWrapper $php_ini, \FastImageSize\FastImageSize $imagesize, $phpbb_root_path, \phpbb\mimetype\guesser $mimetype_guesser = null, \phpbb\plupload\plupload $plupload = null)  	{  		$this->filesystem = $phpbb_filesystem;  		$this->language = $language; | 
