diff --git a/Classes/PHPWord/Shared/File.php b/Classes/PHPWord/Shared/File.php index 4ed0e725..8a77703d 100755 --- a/Classes/PHPWord/Shared/File.php +++ b/Classes/PHPWord/Shared/File.php @@ -102,12 +102,12 @@ class PHPWord_Shared_File * Return the Image Type from a file * * @param string $filename - * @param bool $userFallbackFunction + * @param bool $useFallbackFunction * @return int|bool */ - public static function imagetype($filename, $userFallbackFunction = false) + public static function imagetype($filename, $useFallbackFunction = false) { - if ($userFallbackFunction || !function_exists('exif_imagetype')) { + if ($useFallbackFunction || !function_exists('exif_imagetype')) { return self::fallbackImagetype($filename); } diff --git a/changelog.txt b/changelog.txt index 23c4c4c2..46b64423 100755 --- a/changelog.txt +++ b/changelog.txt @@ -22,6 +22,9 @@ * @version ##VERSION##, ##DATE## ************************************************************************************** +Changes in branch for release 0.9.0 : +- QA: (Progi1984) - Documentation + Changes in branch for release 0.8.1 : - Feature: (bskrtich, gabrielbull) - Added fallback for computers that do not have exif_imagetype