summaryrefslogtreecommitdiff
path: root/ext/gd
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2007-08-27 08:27:45 +0000
committerPierre Joye <pajoye@php.net>2007-08-27 08:27:45 +0000
commit73fcf226277fb26924acabe4b3d16281a8748633 (patch)
tree2a6203216a4dc120ce52cc46ded276b3b6e29440 /ext/gd
parent0d98b9a1d992865e658043d1c66d6e5b92639ca0 (diff)
downloadphp-git-73fcf226277fb26924acabe4b3d16281a8748633.tar.gz
- revert fix for #106
- add news entry for pslib fix NB: Please next time, inform us before a complete freeze is done for a given branch. And a week for a RC is defitively too short.
Diffstat (limited to 'ext/gd')
-rw-r--r--ext/gd/libgd/gd.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/gd/libgd/gd.c b/ext/gd/libgd/gd.c
index 6e484adec5..301072f4e7 100644
--- a/ext/gd/libgd/gd.c
+++ b/ext/gd/libgd/gd.c
@@ -2124,12 +2124,6 @@ void gdImageRectangle (gdImagePtr im, int x1, int y1, int x2, int y2, int color)
int half1 = 1;
int t;
-
- if (x1 == x2 && y1 == y2 && thick == 1) {
- gdImageSetPixel(im, x1, y1, color);
- return;
- }
-
if (y2 < y1) {
t=y1;
y1 = y2;