[PHP-CVS] cvs: php4 /ext/exif exif.c
by Marcus Börger other posts by this author
Aug 29 2002 8:32AM messages near this date
[PHP-CVS] cvs: php4(PHP_4_2_0) /ext/exif exif.c
|
[PHP-CVS] cvs: php4 /ext/exif config.m4
helly Thu Aug 29 04:32:42 2002 EDT
Modified files:
/php4/ext/exif exif.c
Log:
One zero to much
Index: php4/ext/exif/exif.c
diff -u php4/ext/exif/exif.c:1.114 php4/ext/exif/exif.c:1.115
--- php4/ext/exif/exif.c:1.114 Tue Aug 13 05:41:30 2002
+++ php4/ext/exif/exif.c Thu Aug 29 04:32:41 2002
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: exif.c,v 1.114 2002/08/13 09:41:30 helly Exp $ */
+/* $Id: exif.c,v 1.115 2002/08/29 08:32:41 helly Exp $ */
/* ToDos
*
@@ -109,7 +109,7 @@
};
/* }}} */
-#define EXIF_VERSION "1.4 $Id: exif.c,v 1.114 2002/08/13 09:41:30 helly Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.115 2002/08/29 08:32:41 helly Exp $"
/* {{{ PHP_MINFO_FUNCTION
*/
@@ -118,7 +118,7 @@
php_info_print_table_start();
php_info_print_table_row(2, "EXIF Support", "enabled");
php_info_print_table_row(2, "EXIF Version", EXIF_VERSION);
- php_info_print_table_row(2, "Supported EXIF Version", "02200");
+ php_info_print_table_row(2, "Supported EXIF Version", "0220");
php_info_print_table_row(2, "Supported filetypes", "JPEG,TIFF");
php_info_print_table_end();
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|