We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e0ac74f + e257c08 commit 277a016Copy full SHA for 277a016
NEWS
@@ -9,6 +9,10 @@ PHP NEWS
9
- Bz2:
10
. Fix truncation of total output size causing erroneous errors. (ndossche)
11
12
+- GD:
13
+ . Fixed bug GH-21431 (phpinfo() to display libJPEG 10.0 support).
14
+ (David Carlier)
15
+
16
- Opcache:
17
. Fixed bug GH-21052 (Preloaded constant erroneously propagated to file-cached
18
script). (ilutov)
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