We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b95f0eb commit e257c08Copy full SHA for e257c08
2 files changed
NEWS
@@ -5,6 +5,10 @@ PHP NEWS
5
- Bz2:
6
. Fix truncation of total output size causing erroneous errors. (ndossche)
7
8
+- GD:
9
+ . Fixed bug GH-21431 (phpinfo() to display libJPEG 10.0 support).
10
+ (David Carlier)
11
+
12
- Opcache:
13
. Fixed bug GH-20838 (JIT compiler produces wrong arithmetic results).
14
(Dmitry, iliaal)
ext/gd/libgd/gd_jpeg.c
@@ -125,6 +125,10 @@ const char * gdJpegGetVersionString()
125
return "9 compatible";
126
break;
127
128
+ case 100:
129
+ return "10 compatible";
130
+ break;
131
132
default:
133
return "unknown";
134
}
0 commit comments