diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2002-11-08 03:04:23 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2002-11-08 03:04:23 +0000 |
commit | d28e3d9dc5d5e1705bfd5887d649f2a63d477bd9 (patch) | |
tree | 5628a14692b70ab0ef7ad71f7bd77f20064df1a2 | |
parent | 9cc24bad1e34788242d5a79702f064160e6810c9 (diff) | |
download | php-git-d28e3d9dc5d5e1705bfd5887d649f2a63d477bd9.tar.gz |
Fixed prototype of image_type_to_mime_type(), bug #20094.
-rw-r--r-- | ext/standard/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c index b900de8e84..806d11a276 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -834,7 +834,7 @@ PHPAPI const char * php_image_type_to_mime_type(int image_type) } /* }}} */ -/* {{{ proto array image_type_to_mime_type(int imagetype) +/* {{{ proto string image_type_to_mime_type(int imagetype) Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype */ PHP_FUNCTION(image_type_to_mime_type) { |