summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-06-03 05:23:15 +0200
committerNikita Popov <nikita.ppv@gmail.com>2018-06-09 15:32:21 +0200
commit7bb741cad97d57325ad88ab724b2a2707a08725f (patch)
tree7205c464f3aef8eda70b4f8e359fb48a85d276ae
parent777187cbafb8c1844971169dc97d38a633094aaf (diff)
downloadphp-git-7bb741cad97d57325ad88ab724b2a2707a08725f.tar.gz
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.
-rw-r--r--.gitattributes1
-rw-r--r--ext/exif/exif.c3
2 files changed, 0 insertions, 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");