From 7bb741cad97d57325ad88ab724b2a2707a08725f Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sun, 3 Jun 2018 05:23:15 +0200 Subject: Remove exif version from the phpinfo output This patch removes the exif version in the phpinfo output to sync it with the rest of the php bundled extensions. Also in the past the revision id from the version control system was used and is today not needed anymore. --- .gitattributes | 1 - ext/exif/exif.c | 3 --- 2 files changed, 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index 5d0df8ad7e..193157b2c1 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,7 +9,6 @@ ext/dba/libflatfile/flatfile.c ident ext/dba/libcdb/cdb_make.c ident ext/dba/libcdb/cdb.c ident run-tests.php ident -ext/exif/exif.c ident NEWS merge=NEWS UPGRADING merge=NEWS UPGRADING.INTERNALS merge=NEWS diff --git a/ext/exif/exif.c b/ext/exif/exif.c index 6562e04ba8..4764f6c628 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -17,8 +17,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -113,7 +111,6 @@ PHP_MINFO_FUNCTION(exif) { php_info_print_table_start(); php_info_print_table_row(2, "EXIF Support", "enabled"); - php_info_print_table_row(2, "EXIF Version", PHP_EXIF_VERSION); php_info_print_table_row(2, "Supported EXIF Version", "0220"); php_info_print_table_row(2, "Supported filetypes", "JPEG, TIFF"); -- cgit v1.2.1