pajoye          Tue Jan  7 17:34:01 2003 EDT

  Modified files:              
    /php4/ext/gd        gd.c 
  Log:
  Fix line drawed twice (L. Atkinson)
  
  
Index: php4/ext/gd/gd.c
diff -u php4/ext/gd/gd.c:1.241 php4/ext/gd/gd.c:1.242
--- php4/ext/gd/gd.c:1.241      Tue Dec 31 11:06:39 2002
+++ php4/ext/gd/gd.c    Tue Jan  7 17:34:00 2003
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: gd.c,v 1.241 2002/12/31 16:06:39 sebastian Exp $ */
+/* $Id: gd.c,v 1.242 2003/01/07 22:34:00 pajoye Exp $ */
 
 /* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center, 
    Cold Spring Harbor Labs. */
@@ -2149,8 +2149,6 @@
        else 
 #endif 
                gdImageLine(im, Z_LVAL_PP(x1), Z_LVAL_PP(y1), Z_LVAL_PP(x2), 
Z_LVAL_PP(y2), Z_LVAL_PP(col));
-       
-       gdImageLine(im, Z_LVAL_PP(x1), Z_LVAL_PP(y1), Z_LVAL_PP(x2), Z_LVAL_PP(y2), 
Z_LVAL_PP(col));
        RETURN_TRUE;
 }
 /* }}} */      



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to